diff options
Diffstat (limited to 'drivers/hid/hid-zpff.c')
-rw-r--r-- | drivers/hid/hid-zpff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-zpff.c b/drivers/hid/hid-zpff.c index 57f710757bf4..a79f0d78c6be 100644 --- a/drivers/hid/hid-zpff.c +++ b/drivers/hid/hid-zpff.c | |||
@@ -152,12 +152,12 @@ static struct hid_driver zp_driver = { | |||
152 | .probe = zp_probe, | 152 | .probe = zp_probe, |
153 | }; | 153 | }; |
154 | 154 | ||
155 | static int zp_init(void) | 155 | static int __init zp_init(void) |
156 | { | 156 | { |
157 | return hid_register_driver(&zp_driver); | 157 | return hid_register_driver(&zp_driver); |
158 | } | 158 | } |
159 | 159 | ||
160 | static void zp_exit(void) | 160 | static void __exit zp_exit(void) |
161 | { | 161 | { |
162 | hid_unregister_driver(&zp_driver); | 162 | hid_unregister_driver(&zp_driver); |
163 | } | 163 | } |