diff options
Diffstat (limited to 'drivers/input/touchscreen/touchright.c')
-rw-r--r-- | drivers/input/touchscreen/touchright.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/drivers/input/touchscreen/touchright.c b/drivers/input/touchscreen/touchright.c index 3a5c142c2a78..8a2887daf194 100644 --- a/drivers/input/touchscreen/touchright.c +++ b/drivers/input/touchscreen/touchright.c | |||
@@ -176,19 +176,4 @@ static struct serio_driver tr_drv = { | |||
176 | .disconnect = tr_disconnect, | 176 | .disconnect = tr_disconnect, |
177 | }; | 177 | }; |
178 | 178 | ||
179 | /* | 179 | module_serio_driver(tr_drv); |
180 | * The functions for inserting/removing us as a module. | ||
181 | */ | ||
182 | |||
183 | static int __init tr_init(void) | ||
184 | { | ||
185 | return serio_register_driver(&tr_drv); | ||
186 | } | ||
187 | |||
188 | static void __exit tr_exit(void) | ||
189 | { | ||
190 | serio_unregister_driver(&tr_drv); | ||
191 | } | ||
192 | |||
193 | module_init(tr_init); | ||
194 | module_exit(tr_exit); | ||