HID: Use module_hid_driver macro
Use the new module_hid_driver macro in all HID drivers that have a simple register/unregister init/exit. This also converts the hid drivers that test for a failure of hid_register_driver() and report the failure. Using module_hid_driver in those drivers removes the failure message. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:

committed by
Jiri Kosina

szülő
d463f4719a
commit
f425458eaf
@@ -235,25 +235,8 @@ static struct hid_driver icade_driver = {
|
||||
.input_mapped = icade_input_mapped,
|
||||
.input_mapping = icade_input_mapping,
|
||||
};
|
||||
module_hid_driver(icade_driver);
|
||||
|
||||
static int __init icade_init(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = hid_register_driver(&icade_driver);
|
||||
if (ret)
|
||||
pr_err("can't register icade driver\n");
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void __exit icade_exit(void)
|
||||
{
|
||||
hid_unregister_driver(&icade_driver);
|
||||
}
|
||||
|
||||
module_init(icade_init);
|
||||
module_exit(icade_exit);
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("Bastien Nocera <hadess@hadess.net>");
|
||||
MODULE_DESCRIPTION("ION iCade input driver");
|
||||
|
Reference in New Issue
Block a user