diff options
Diffstat (limited to 'drivers/hid/hid-cypress.c')
-rw-r--r-- | drivers/hid/hid-cypress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-cypress.c b/drivers/hid/hid-cypress.c index 9d6d3b91773b..62e9cb10e88c 100644 --- a/drivers/hid/hid-cypress.c +++ b/drivers/hid/hid-cypress.c | |||
@@ -141,12 +141,12 @@ static struct hid_driver cp_driver = { | |||
141 | .probe = cp_probe, | 141 | .probe = cp_probe, |
142 | }; | 142 | }; |
143 | 143 | ||
144 | static int cp_init(void) | 144 | static int __init cp_init(void) |
145 | { | 145 | { |
146 | return hid_register_driver(&cp_driver); | 146 | return hid_register_driver(&cp_driver); |
147 | } | 147 | } |
148 | 148 | ||
149 | static void cp_exit(void) | 149 | static void __exit cp_exit(void) |
150 | { | 150 | { |
151 | hid_unregister_driver(&cp_driver); | 151 | hid_unregister_driver(&cp_driver); |
152 | } | 152 | } |