diff options
author | Corentin Chary <corentin.chary@gmail.com> | 2011-12-15 02:27:31 -0500 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2012-03-20 12:02:14 -0400 |
commit | e0ac913374247f000aa97fdd732dcaf0070dd466 (patch) | |
tree | 9d244a3868a82e88411de6d17d451b659c695eaa /drivers | |
parent | eecc5bbc612a8b008c0ef442ac8445306fbe5277 (diff) |
asus-laptop: log unknown keys
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/platform/x86/asus-laptop.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c index b7944f903886..3976cfac5ffe 100644 --- a/drivers/platform/x86/asus-laptop.c +++ b/drivers/platform/x86/asus-laptop.c | |||
@@ -1364,8 +1364,10 @@ err_btrfk: | |||
1364 | */ | 1364 | */ |
1365 | static void asus_input_notify(struct asus_laptop *asus, int event) | 1365 | static void asus_input_notify(struct asus_laptop *asus, int event) |
1366 | { | 1366 | { |
1367 | if (asus->inputdev) | 1367 | if (!asus->inputdev) |
1368 | sparse_keymap_report_event(asus->inputdev, event, 1, true); | 1368 | return ; |
1369 | if (!sparse_keymap_report_event(asus->inputdev, event, 1, true)) | ||
1370 | pr_info("Unknown key %x pressed\n", event); | ||
1369 | } | 1371 | } |
1370 | 1372 | ||
1371 | static int asus_input_init(struct asus_laptop *asus) | 1373 | static int asus_input_init(struct asus_laptop *asus) |