diff options
Diffstat (limited to 'drivers/input/touchscreen/gunze.c')
-rw-r--r-- | drivers/input/touchscreen/gunze.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/input/touchscreen/gunze.c b/drivers/input/touchscreen/gunze.c index a54f90e02ab6..41c71766bf18 100644 --- a/drivers/input/touchscreen/gunze.c +++ b/drivers/input/touchscreen/gunze.c | |||
@@ -186,19 +186,4 @@ static struct serio_driver gunze_drv = { | |||
186 | .disconnect = gunze_disconnect, | 186 | .disconnect = gunze_disconnect, |
187 | }; | 187 | }; |
188 | 188 | ||
189 | /* | 189 | module_serio_driver(gunze_drv); |
190 | * The functions for inserting/removing us as a module. | ||
191 | */ | ||
192 | |||
193 | static int __init gunze_init(void) | ||
194 | { | ||
195 | return serio_register_driver(&gunze_drv); | ||
196 | } | ||
197 | |||
198 | static void __exit gunze_exit(void) | ||
199 | { | ||
200 | serio_unregister_driver(&gunze_drv); | ||
201 | } | ||
202 | |||
203 | module_init(gunze_init); | ||
204 | module_exit(gunze_exit); | ||