diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-10-12 21:34:25 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-10-12 21:37:14 -0700 |
commit | 7dcc9c230fcef0067efee17c1f8c3c84494a7ec8 (patch) | |
tree | fe46c83072dc9185a39087818fa7927491e98f05 /drivers | |
parent | 5f5eeff4c93256ee93435a3bf08cf18c45e9a994 (diff) | |
download | op-kernel-dev-7dcc9c230fcef0067efee17c1f8c3c84494a7ec8.zip op-kernel-dev-7dcc9c230fcef0067efee17c1f8c3c84494a7ec8.tar.gz |
Input: i8042 - make pnp_data_busted variable boolean instead of int
This small snippet escaped last round of int -> bool conversion.
Reported-by: Joe Perches <joe@perches.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/serio/i8042-x86ia64io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index a39bc4e..77ff205 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h @@ -661,7 +661,7 @@ static void i8042_pnp_exit(void) static int __init i8042_pnp_init(void) { char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 }; - int pnp_data_busted = false; + bool pnp_data_busted = false; int err; #ifdef CONFIG_X86 |