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/touchscreen/mtouch.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/touchscreen/mtouch.c')
-rw-r--r-- | drivers/input/touchscreen/mtouch.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/input/touchscreen/mtouch.c b/drivers/input/touchscreen/mtouch.c index 9077228418b7..eb66b7c37c2f 100644 --- a/drivers/input/touchscreen/mtouch.c +++ b/drivers/input/touchscreen/mtouch.c | |||
@@ -202,19 +202,4 @@ static struct serio_driver mtouch_drv = { | |||
202 | .disconnect = mtouch_disconnect, | 202 | .disconnect = mtouch_disconnect, |
203 | }; | 203 | }; |
204 | 204 | ||
205 | /* | 205 | module_serio_driver(mtouch_drv); |
206 | * The functions for inserting/removing us as a module. | ||
207 | */ | ||
208 | |||
209 | static int __init mtouch_init(void) | ||
210 | { | ||
211 | return serio_register_driver(&mtouch_drv); | ||
212 | } | ||
213 | |||
214 | static void __exit mtouch_exit(void) | ||
215 | { | ||
216 | serio_unregister_driver(&mtouch_drv); | ||
217 | } | ||
218 | |||
219 | module_init(mtouch_init); | ||
220 | module_exit(mtouch_exit); | ||