Commit e0ac9133 authored by Corentin Chary's avatar Corentin Chary Committed by Matthew Garrett

asus-laptop: log unknown keys

Signed-off-by: default avatarCorentin Chary <corentin.chary@gmail.com>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
parent eecc5bbc
...@@ -1364,8 +1364,10 @@ static int pega_rfkill_init(struct asus_laptop *asus) ...@@ -1364,8 +1364,10 @@ static int pega_rfkill_init(struct asus_laptop *asus)
*/ */
static void asus_input_notify(struct asus_laptop *asus, int event) static void asus_input_notify(struct asus_laptop *asus, int event)
{ {
if (asus->inputdev) if (!asus->inputdev)
sparse_keymap_report_event(asus->inputdev, event, 1, true); return ;
if (!sparse_keymap_report_event(asus->inputdev, event, 1, true))
pr_info("Unknown key %x pressed\n", event);
} }
static int asus_input_init(struct asus_laptop *asus) static int asus_input_init(struct asus_laptop *asus)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment