aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-roccat-kone.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hid/hid-roccat-kone.c')
-rw-r--r--drivers/hid/hid-roccat-kone.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-roccat-kone.c b/drivers/hid/hid-roccat-kone.c
index 7b1178496621..a41df9ab2877 100644
--- a/drivers/hid/hid-roccat-kone.c
+++ b/drivers/hid/hid-roccat-kone.c
@@ -989,12 +989,12 @@ static struct hid_driver kone_driver = {
989 .raw_event = kone_raw_event 989 .raw_event = kone_raw_event
990}; 990};
991 991
992static int kone_init(void) 992static int __init kone_init(void)
993{ 993{
994 return hid_register_driver(&kone_driver); 994 return hid_register_driver(&kone_driver);
995} 995}
996 996
997static void kone_exit(void) 997static void __exit kone_exit(void)
998{ 998{
999 hid_unregister_driver(&kone_driver); 999 hid_unregister_driver(&kone_driver);
1000} 1000}