diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-06-06 01:33:37 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2008-07-30 00:41:36 -0400 |
commit | 2547203d583cc267b98f518d5d93e3a0469d8f62 (patch) | |
tree | d4758d81eb78c25fff6abf0ff3660dd8dbc7a3a1 /drivers/input/joystick/guillemot.c | |
parent | 6902c0bead4ce266226fc0c5b3828b850bdc884a (diff) |
Input: gameport - check return value of gameport_register_driver()
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/joystick/guillemot.c')
-rw-r--r-- | drivers/input/joystick/guillemot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/input/joystick/guillemot.c b/drivers/input/joystick/guillemot.c index 25ec3fad9f27..4058d4b272fe 100644 --- a/drivers/input/joystick/guillemot.c +++ b/drivers/input/joystick/guillemot.c | |||
@@ -283,8 +283,7 @@ static struct gameport_driver guillemot_drv = { | |||
283 | 283 | ||
284 | static int __init guillemot_init(void) | 284 | static int __init guillemot_init(void) |
285 | { | 285 | { |
286 | gameport_register_driver(&guillemot_drv); | 286 | return gameport_register_driver(&guillemot_drv); |
287 | return 0; | ||
288 | } | 287 | } |
289 | 288 | ||
290 | static void __exit guillemot_exit(void) | 289 | static void __exit guillemot_exit(void) |