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>
Этот коммит содержится в:

коммит произвёл
Jiri Kosina

родитель
d463f4719a
Коммит
f425458eaf
@@ -419,17 +419,6 @@ static struct hid_driver kye_driver = {
|
||||
.probe = kye_probe,
|
||||
.report_fixup = kye_report_fixup,
|
||||
};
|
||||
module_hid_driver(kye_driver);
|
||||
|
||||
static int __init kye_init(void)
|
||||
{
|
||||
return hid_register_driver(&kye_driver);
|
||||
}
|
||||
|
||||
static void __exit kye_exit(void)
|
||||
{
|
||||
hid_unregister_driver(&kye_driver);
|
||||
}
|
||||
|
||||
module_init(kye_init);
|
||||
module_exit(kye_exit);
|
||||
MODULE_LICENSE("GPL");
|
||||
|
Ссылка в новой задаче
Block a user