diff options
Diffstat (limited to 'drivers/hid/hid-petalynx.c')
-rw-r--r-- | drivers/hid/hid-petalynx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-petalynx.c b/drivers/hid/hid-petalynx.c index 2e83e8ff891a..500fbd0652dc 100644 --- a/drivers/hid/hid-petalynx.c +++ b/drivers/hid/hid-petalynx.c | |||
@@ -105,12 +105,12 @@ static struct hid_driver pl_driver = { | |||
105 | .probe = pl_probe, | 105 | .probe = pl_probe, |
106 | }; | 106 | }; |
107 | 107 | ||
108 | static int pl_init(void) | 108 | static int __init pl_init(void) |
109 | { | 109 | { |
110 | return hid_register_driver(&pl_driver); | 110 | return hid_register_driver(&pl_driver); |
111 | } | 111 | } |
112 | 112 | ||
113 | static void pl_exit(void) | 113 | static void __exit pl_exit(void) |
114 | { | 114 | { |
115 | hid_unregister_driver(&pl_driver); | 115 | hid_unregister_driver(&pl_driver); |
116 | } | 116 | } |