diff options
Diffstat (limited to 'drivers/hid/hid-gyration.c')
-rw-r--r-- | drivers/hid/hid-gyration.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-gyration.c b/drivers/hid/hid-gyration.c index d42d222097a8..cab13e8c7d29 100644 --- a/drivers/hid/hid-gyration.c +++ b/drivers/hid/hid-gyration.c | |||
@@ -81,12 +81,12 @@ static struct hid_driver gyration_driver = { | |||
81 | .event = gyration_event, | 81 | .event = gyration_event, |
82 | }; | 82 | }; |
83 | 83 | ||
84 | static int gyration_init(void) | 84 | static int __init gyration_init(void) |
85 | { | 85 | { |
86 | return hid_register_driver(&gyration_driver); | 86 | return hid_register_driver(&gyration_driver); |
87 | } | 87 | } |
88 | 88 | ||
89 | static void gyration_exit(void) | 89 | static void __exit gyration_exit(void) |
90 | { | 90 | { |
91 | hid_unregister_driver(&gyration_driver); | 91 | hid_unregister_driver(&gyration_driver); |
92 | } | 92 | } |