diff options
Diffstat (limited to 'drivers/input/touchscreen/touchit213.c')
-rw-r--r-- | drivers/input/touchscreen/touchit213.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/input/touchscreen/touchit213.c b/drivers/input/touchscreen/touchit213.c index d1297ba19daf..5f29e5b8e1c1 100644 --- a/drivers/input/touchscreen/touchit213.c +++ b/drivers/input/touchscreen/touchit213.c | |||
@@ -216,19 +216,4 @@ static struct serio_driver touchit213_drv = { | |||
216 | .disconnect = touchit213_disconnect, | 216 | .disconnect = touchit213_disconnect, |
217 | }; | 217 | }; |
218 | 218 | ||
219 | /* | 219 | module_serio_driver(touchit213_drv); |
220 | * The functions for inserting/removing us as a module. | ||
221 | */ | ||
222 | |||
223 | static int __init touchit213_init(void) | ||
224 | { | ||
225 | return serio_register_driver(&touchit213_drv); | ||
226 | } | ||
227 | |||
228 | static void __exit touchit213_exit(void) | ||
229 | { | ||
230 | serio_unregister_driver(&touchit213_drv); | ||
231 | } | ||
232 | |||
233 | module_init(touchit213_init); | ||
234 | module_exit(touchit213_exit); | ||