From: Mattia Dongili Date: Mon, 14 Jan 2008 09:05:46 +0000 (+0900) Subject: sony-laptop: fix scancode decode X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fccd5d00ba68455425a35f905fd92538429c310d;p=linux-beck.git sony-laptop: fix scancode decode compare against the sony_laptop specific event list index to decode the input scancode to send. Signed-off-by: Mattia Dongili Signed-off-by: Len Brown --- diff --git a/drivers/misc/sony-laptop.c b/drivers/misc/sony-laptop.c index 70d5cc5969aa..899e3f75f288 100644 --- a/drivers/misc/sony-laptop.c +++ b/drivers/misc/sony-laptop.c @@ -315,7 +315,7 @@ static void sony_laptop_report_input_event(u8 event) break; default: - if (event > ARRAY_SIZE (sony_laptop_input_keycode_map)) { + if (event > ARRAY_SIZE(sony_laptop_input_index)) { dprintk("sony_laptop_report_input_event, event not known: %d\n", event); break; }