diff options
Diffstat (limited to 'drivers/hid/hid-a4tech.c')
-rw-r--r-- | drivers/hid/hid-a4tech.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-a4tech.c b/drivers/hid/hid-a4tech.c index 42ea359e94cf..df474c699fb8 100644 --- a/drivers/hid/hid-a4tech.c +++ b/drivers/hid/hid-a4tech.c | |||
@@ -145,12 +145,12 @@ static struct hid_driver a4_driver = { | |||
145 | .remove = a4_remove, | 145 | .remove = a4_remove, |
146 | }; | 146 | }; |
147 | 147 | ||
148 | static int a4_init(void) | 148 | static int __init a4_init(void) |
149 | { | 149 | { |
150 | return hid_register_driver(&a4_driver); | 150 | return hid_register_driver(&a4_driver); |
151 | } | 151 | } |
152 | 152 | ||
153 | static void a4_exit(void) | 153 | static void __exit a4_exit(void) |
154 | { | 154 | { |
155 | hid_unregister_driver(&a4_driver); | 155 | hid_unregister_driver(&a4_driver); |
156 | } | 156 | } |