diff options
Diffstat (limited to 'drivers/input/touchscreen/touchwin.c')
-rw-r--r-- | drivers/input/touchscreen/touchwin.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/input/touchscreen/touchwin.c b/drivers/input/touchscreen/touchwin.c index 763a656a59f8..588cdcb839dd 100644 --- a/drivers/input/touchscreen/touchwin.c +++ b/drivers/input/touchscreen/touchwin.c | |||
@@ -183,19 +183,4 @@ static struct serio_driver tw_drv = { | |||
183 | .disconnect = tw_disconnect, | 183 | .disconnect = tw_disconnect, |
184 | }; | 184 | }; |
185 | 185 | ||
186 | /* | 186 | module_serio_driver(tw_drv); |
187 | * The functions for inserting/removing us as a module. | ||
188 | */ | ||
189 | |||
190 | static int __init tw_init(void) | ||
191 | { | ||
192 | return serio_register_driver(&tw_drv); | ||
193 | } | ||
194 | |||
195 | static void __exit tw_exit(void) | ||
196 | { | ||
197 | serio_unregister_driver(&tw_drv); | ||
198 | } | ||
199 | |||
200 | module_init(tw_init); | ||
201 | module_exit(tw_exit); | ||