diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2009-09-29 03:24:55 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-09-29 13:58:20 +0200 |
commit | fa59530267e1006b7180e9ce1dee4136907b2b65 (patch) | |
tree | 646a6c22631d4489b1c6da3195062b69baf1dc32 /drivers/hid/hid-twinhan.c | |
parent | 7fa07729e439a6184bd824746d06a49cca553f15 (diff) | |
download | linux-3.10-fa59530267e1006b7180e9ce1dee4136907b2b65.tar.gz linux-3.10-fa59530267e1006b7180e9ce1dee4136907b2b65.tar.bz2 linux-3.10-fa59530267e1006b7180e9ce1dee4136907b2b65.zip |
HID: add __init/__exit macros to twinhan.c
Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of the twinhan driver in hid.
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-twinhan.c')
-rw-r--r-- | drivers/hid/hid-twinhan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-twinhan.c b/drivers/hid/hid-twinhan.c index b05f602c051..c40afc57fc8 100644 --- a/drivers/hid/hid-twinhan.c +++ b/drivers/hid/hid-twinhan.c @@ -132,12 +132,12 @@ static struct hid_driver twinhan_driver = { .input_mapping = twinhan_input_mapping, }; -static int twinhan_init(void) +static int __init twinhan_init(void) { return hid_register_driver(&twinhan_driver); } -static void twinhan_exit(void) +static void __exit twinhan_exit(void) { hid_unregister_driver(&twinhan_driver); } |