aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorJiri Kosina <jkosina@suse.cz>2013-10-14 16:07:42 +0200
committerJiri Kosina <jkosina@suse.cz>2013-10-14 16:07:42 +0200
commita94c79bdc972f7b3d66756043edbd6d04e8486d6 (patch)
treebf27a6fcc9ca6c3b40083d362af95948a713a3b1 /drivers/hid
parentHID: apple: option to swap the 'Option' ("Alt") and 'Command' ("Flag") keys. (diff)
downloadlinux-dev-a94c79bdc972f7b3d66756043edbd6d04e8486d6.tar.xz
linux-dev-a94c79bdc972f7b3d66756043edbd6d04e8486d6.zip
HID: apple: swap_opt_cmd is already zero-initialized
Global static variable is already zero-initialized. Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/hid-apple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c
index 3b219b9553fb..497558127bb3 100644
--- a/drivers/hid/hid-apple.c
+++ b/drivers/hid/hid-apple.c
@@ -46,7 +46,7 @@ module_param(iso_layout, uint, 0644);
MODULE_PARM_DESC(iso_layout, "Enable/Disable hardcoded ISO-layout of the keyboard. "
"(0 = disabled, [1] = enabled)");
-static unsigned int swap_opt_cmd = 0;
+static unsigned int swap_opt_cmd;
module_param(swap_opt_cmd, uint, 0644);
MODULE_PARM_DESC(swap_opt_cmd, "Swap the Option (\"Alt\") and Command (\"Flag\") keys. "
"(For people who want to keep Windows PC keyboard muscle memory. "