diff options
Diffstat (limited to 'drivers/hid/hid-pl.c')
-rw-r--r-- | drivers/hid/hid-pl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-pl.c b/drivers/hid/hid-pl.c index 4db9a3483760..c6d7dbc935b1 100644 --- a/drivers/hid/hid-pl.c +++ b/drivers/hid/hid-pl.c | |||
@@ -217,12 +217,12 @@ static struct hid_driver pl_driver = { | |||
217 | .probe = pl_probe, | 217 | .probe = pl_probe, |
218 | }; | 218 | }; |
219 | 219 | ||
220 | static int pl_init(void) | 220 | static int __init pl_init(void) |
221 | { | 221 | { |
222 | return hid_register_driver(&pl_driver); | 222 | return hid_register_driver(&pl_driver); |
223 | } | 223 | } |
224 | 224 | ||
225 | static void pl_exit(void) | 225 | static void __exit pl_exit(void) |
226 | { | 226 | { |
227 | hid_unregister_driver(&pl_driver); | 227 | hid_unregister_driver(&pl_driver); |
228 | } | 228 | } |