diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-04-04 02:50:17 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-04-04 12:25:43 -0400 |
commit | 65ac9f7a23c934ee8c40dc20955e75db4924bfea (patch) | |
tree | 7baa3439e9b0a774073473cccef6960e7f77bc6e /drivers/input/joystick/stinger.c | |
parent | fa7f86d157781515b74d658120552eafd890f4de (diff) |
Input: serio - use module_serio_driver
This patch converts the drivers in drivers/input/* to use
module_serio_driver() macro which makes the code smaller and
a bit simpler.
Signed-off-by: Axel Lin <axel.lin@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 | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/input/joystick/stinger.c b/drivers/input/joystick/stinger.c index e0db9f5e4b41..0f51a60e14a7 100644 --- a/drivers/input/joystick/stinger.c +++ b/drivers/input/joystick/stinger.c | |||
@@ -208,19 +208,4 @@ static struct serio_driver stinger_drv = { | |||
208 | .disconnect = stinger_disconnect, | 208 | .disconnect = stinger_disconnect, |
209 | }; | 209 | }; |
210 | 210 | ||
211 | /* | 211 | module_serio_driver(stinger_drv); |
212 | * The functions for inserting/removing us as a module. | ||
213 | */ | ||
214 | |||
215 | static int __init stinger_init(void) | ||
216 | { | ||
217 | return serio_register_driver(&stinger_drv); | ||
218 | } | ||
219 | |||
220 | static void __exit stinger_exit(void) | ||
221 | { | ||
222 | serio_unregister_driver(&stinger_drv); | ||
223 | } | ||
224 | |||
225 | module_init(stinger_init); | ||
226 | module_exit(stinger_exit); | ||