summaryrefslogtreecommitdiffstats
path: root/drivers/misc/sony-laptop.c
diff options
context:
space:
mode:
authorAdrian Bunk2008-02-19 23:59:03 +0100
committerLen Brown2008-02-21 10:49:24 +0100
commitd399d130c82a1e1751b7770944f487fbd8b6272a (patch)
tree2aba39a7511e3fad2b2da70b41fcfd7718b630fe /drivers/misc/sony-laptop.c
parentFRV: Change the timerfd syscalls to be the same as i386 (diff)
downloadkernel-qcow2-linux-d399d130c82a1e1751b7770944f487fbd8b6272a.tar.gz
kernel-qcow2-linux-d399d130c82a1e1751b7770944f487fbd8b6272a.tar.xz
kernel-qcow2-linux-d399d130c82a1e1751b7770944f487fbd8b6272a.zip
sony-laptop.c: fix off-by-one
This patch fixes an off-by-one spotted by the Coverity checker. Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: Mattia Dongili <malattia@linux.it> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/misc/sony-laptop.c')
-rw-r--r--drivers/misc/sony-laptop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/sony-laptop.c b/drivers/misc/sony-laptop.c
index 899e3f75f288..02ff3d19b1cc 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_index)) {
+ if (event >= ARRAY_SIZE(sony_laptop_input_index)) {
dprintk("sony_laptop_report_input_event, event not known: %d\n", event);
break;
}