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/mouse/sermouse.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/mouse/sermouse.c')
-rw-r--r-- | drivers/input/mouse/sermouse.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/input/mouse/sermouse.c b/drivers/input/mouse/sermouse.c index 17ff137b9bd5..d5928fd0c914 100644 --- a/drivers/input/mouse/sermouse.c +++ b/drivers/input/mouse/sermouse.c | |||
@@ -355,15 +355,4 @@ static struct serio_driver sermouse_drv = { | |||
355 | .disconnect = sermouse_disconnect, | 355 | .disconnect = sermouse_disconnect, |
356 | }; | 356 | }; |
357 | 357 | ||
358 | static int __init sermouse_init(void) | 358 | module_serio_driver(sermouse_drv); |
359 | { | ||
360 | return serio_register_driver(&sermouse_drv); | ||
361 | } | ||
362 | |||
363 | static void __exit sermouse_exit(void) | ||
364 | { | ||
365 | serio_unregister_driver(&sermouse_drv); | ||
366 | } | ||
367 | |||
368 | module_init(sermouse_init); | ||
369 | module_exit(sermouse_exit); | ||