hwmon: (adt7475) Fix temperature fault flags
[safe/jmp/linux-2.6] / drivers / hid / hid-kye.c
index ea7f412..f887171 100644 (file)
@@ -54,12 +54,12 @@ static struct hid_driver kye_driver = {
        .report_fixup = kye_report_fixup,
 };
 
-static int kye_init(void)
+static int __init kye_init(void)
 {
        return hid_register_driver(&kye_driver);
 }
 
-static void kye_exit(void)
+static void __exit kye_exit(void)
 {
        hid_unregister_driver(&kye_driver);
 }
@@ -67,5 +67,3 @@ static void kye_exit(void)
 module_init(kye_init);
 module_exit(kye_exit);
 MODULE_LICENSE("GPL");
-
-HID_COMPAT_LOAD_DRIVER(kye);