diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-05-29 06:09:22 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-05-29 09:04:33 -0400 |
commit | c99f81887850cb593ea02bd14a68062547db8261 (patch) | |
tree | ccf1718cfddb64756badb5527a6a55a6e8fc3cc5 /drivers/hid/hid-holtek-mouse.c | |
parent | 40d3597fc988dbe3bc902c501f88a73391c7da0d (diff) |
HID: holtek-mouse: use module_hid_driver() to simplify the code
module_hid_driver() makes the code simpler by eliminating
boilerplate code.
Reported-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-holtek-mouse.c')
-rw-r--r-- | drivers/hid/hid-holtek-mouse.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hid/hid-holtek-mouse.c b/drivers/hid/hid-holtek-mouse.c index 6a23ee678138..7e6db3cf46f9 100644 --- a/drivers/hid/hid-holtek-mouse.c +++ b/drivers/hid/hid-holtek-mouse.c | |||
@@ -73,16 +73,5 @@ static struct hid_driver holtek_mouse_driver = { | |||
73 | .report_fixup = holtek_mouse_report_fixup, | 73 | .report_fixup = holtek_mouse_report_fixup, |
74 | }; | 74 | }; |
75 | 75 | ||
76 | static int __init holtek_mouse_init(void) | 76 | module_hid_driver(holtek_mouse_driver); |
77 | { | ||
78 | return hid_register_driver(&holtek_mouse_driver); | ||
79 | } | ||
80 | |||
81 | static void __exit holtek_mouse_exit(void) | ||
82 | { | ||
83 | hid_unregister_driver(&holtek_mouse_driver); | ||
84 | } | ||
85 | |||
86 | module_exit(holtek_mouse_exit); | ||
87 | module_init(holtek_mouse_init); | ||
88 | MODULE_LICENSE("GPL"); | 77 | MODULE_LICENSE("GPL"); |