diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-02-19 23:59:03 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-02-21 10:49:24 +0100 |
commit | d399d130c82a1e1751b7770944f487fbd8b6272a (patch) | |
tree | 2aba39a7511e3fad2b2da70b41fcfd7718b630fe | |
parent | FRV: Change the timerfd syscalls to be the same as i386 (diff) | |
download | linux-d399d130c82a1e1751b7770944f487fbd8b6272a.tar.xz 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>
-rw-r--r-- | drivers/misc/sony-laptop.c | 2 |
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; } |