From: Lad, Prabhakar Date: Thu, 5 Feb 2015 14:45:38 +0000 (+0000) Subject: thinkpad_acpi.c: Fix sparse warning (make undeclared var static) X-Git-Tag: Ubuntu-5.13.0-19.19~18454^2~18 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=b201a47f3ca6e86d5b3d6d4c4f156a77e6d0cac7;p=mirror_ubuntu-jammy-kernel.git thinkpad_acpi.c: Fix sparse warning (make undeclared var static) Fix the following sparse warning: thinkpad_acpi.c:3459:11: warning: symbol 'adaptive_keyboard_modes' was not declared. Should it be static? Signed-off-by: Lad, Prabhakar Acked-by: Henrique de Moraes Holschuh Signed-off-by: Darren Hart --- diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index c3d11fabc46f..0e9262b6273a 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -3456,7 +3456,7 @@ enum ADAPTIVE_KEY_MODE { LAYFLAT_MODE }; -const int adaptive_keyboard_modes[] = { +static const int adaptive_keyboard_modes[] = { HOME_MODE, /* WEB_BROWSER_MODE = 2, WEB_CONFERENCE_MODE = 3, */