From: Luca Stefani Date: Fri, 6 May 2022 12:25:35 +0000 (+0200) Subject: platform/x86: asus-wmi: Update unknown code message X-Git-Tag: v6.6.17~7515^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e70a57b659463147a35734429d035940306e08f;p=platform%2Fkernel%2Flinux-rpi.git platform/x86: asus-wmi: Update unknown code message Prepend 0x to the actual key code to specify it is already an hex value Signed-off-by: Luca Stefani Link: https://lore.kernel.org/r/20220506122536.113566-1-luca.stefani.ge1@gmail.com Signed-off-by: Hans de Goede --- diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c index 9dc511f..62ce198 100644 --- a/drivers/platform/x86/asus-wmi.c +++ b/drivers/platform/x86/asus-wmi.c @@ -3114,7 +3114,7 @@ static void asus_wmi_handle_event_code(int code, struct asus_wmi *asus) if (!sparse_keymap_report_event(asus->inputdev, code, key_value, autorelease)) - pr_info("Unknown key %x pressed\n", code); + pr_info("Unknown key code 0x%x\n", code); } static void asus_wmi_notify(u32 value, void *context)