diff options
Diffstat (limited to 'drivers/hid/hid-cherry.c')
-rw-r--r-- | drivers/hid/hid-cherry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-cherry.c b/drivers/hid/hid-cherry.c index ab8209e7e45c..7e597d7f770f 100644 --- a/drivers/hid/hid-cherry.c +++ b/drivers/hid/hid-cherry.c | |||
@@ -70,12 +70,12 @@ static struct hid_driver ch_driver = { | |||
70 | .input_mapping = ch_input_mapping, | 70 | .input_mapping = ch_input_mapping, |
71 | }; | 71 | }; |
72 | 72 | ||
73 | static int ch_init(void) | 73 | static int __init ch_init(void) |
74 | { | 74 | { |
75 | return hid_register_driver(&ch_driver); | 75 | return hid_register_driver(&ch_driver); |
76 | } | 76 | } |
77 | 77 | ||
78 | static void ch_exit(void) | 78 | static void __exit ch_exit(void) |
79 | { | 79 | { |
80 | hid_unregister_driver(&ch_driver); | 80 | hid_unregister_driver(&ch_driver); |
81 | } | 81 | } |