diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2006-11-23 23:35:10 -0500 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2006-11-23 23:35:10 -0500 |
commit | 153a9df01c0d1ecdc56161c7a0f830325145dd64 (patch) | |
tree | 6645b72a6036bb2491d1e54317009259e41bf568 /drivers/input/joystick/stinger.c | |
parent | ed7b1f6d6ea1054ea4fe293a7fd8015fc3803d93 (diff) |
Input: handle serio_register_driver() errors
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/joystick/stinger.c')
-rw-r--r-- | drivers/input/joystick/stinger.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/input/joystick/stinger.c b/drivers/input/joystick/stinger.c index b51a4a4c7f60..ecb0916215fa 100644 --- a/drivers/input/joystick/stinger.c +++ b/drivers/input/joystick/stinger.c | |||
@@ -216,8 +216,7 @@ static struct serio_driver stinger_drv = { | |||
216 | 216 | ||
217 | static int __init stinger_init(void) | 217 | static int __init stinger_init(void) |
218 | { | 218 | { |
219 | serio_register_driver(&stinger_drv); | 219 | return serio_register_driver(&stinger_drv); |
220 | return 0; | ||
221 | } | 220 | } |
222 | 221 | ||
223 | static void __exit stinger_exit(void) | 222 | static void __exit stinger_exit(void) |