diff options
Diffstat (limited to 'drivers/hid/hid-topseed.c')
-rw-r--r-- | drivers/hid/hid-topseed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-topseed.c b/drivers/hid/hid-topseed.c index 152ccfabeba5..6925eda1081a 100644 --- a/drivers/hid/hid-topseed.c +++ b/drivers/hid/hid-topseed.c | |||
@@ -60,12 +60,12 @@ static struct hid_driver ts_driver = { | |||
60 | .input_mapping = ts_input_mapping, | 60 | .input_mapping = ts_input_mapping, |
61 | }; | 61 | }; |
62 | 62 | ||
63 | static int ts_init(void) | 63 | static int __init ts_init(void) |
64 | { | 64 | { |
65 | return hid_register_driver(&ts_driver); | 65 | return hid_register_driver(&ts_driver); |
66 | } | 66 | } |
67 | 67 | ||
68 | static void ts_exit(void) | 68 | static void __exit ts_exit(void) |
69 | { | 69 | { |
70 | hid_unregister_driver(&ts_driver); | 70 | hid_unregister_driver(&ts_driver); |
71 | } | 71 | } |