aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-holtek-mouse.c
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2013-05-29 06:09:22 -0400
committerJiri Kosina <jkosina@suse.cz>2013-05-29 09:04:33 -0400
commitc99f81887850cb593ea02bd14a68062547db8261 (patch)
treeccf1718cfddb64756badb5527a6a55a6e8fc3cc5 /drivers/hid/hid-holtek-mouse.c
parent40d3597fc988dbe3bc902c501f88a73391c7da0d (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.c13
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
76static int __init holtek_mouse_init(void) 76module_hid_driver(holtek_mouse_driver);
77{
78 return hid_register_driver(&holtek_mouse_driver);
79}
80
81static void __exit holtek_mouse_exit(void)
82{
83 hid_unregister_driver(&holtek_mouse_driver);
84}
85
86module_exit(holtek_mouse_exit);
87module_init(holtek_mouse_init);
88MODULE_LICENSE("GPL"); 77MODULE_LICENSE("GPL");