mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
watchdog: mei_wdt: use module_mei_cl_driver macro
Replace boilerplate driver registration with module_mei_cl_driver macro. Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Acked-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5be149bdd3
commit
b2a2f70863
@ -699,25 +699,7 @@ static struct mei_cl_driver mei_wdt_driver = {
|
||||
.remove = mei_wdt_remove,
|
||||
};
|
||||
|
||||
static int __init mei_wdt_init(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = mei_cldev_driver_register(&mei_wdt_driver);
|
||||
if (ret) {
|
||||
pr_err(KBUILD_MODNAME ": module registration failed\n");
|
||||
return ret;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __exit mei_wdt_exit(void)
|
||||
{
|
||||
mei_cldev_driver_unregister(&mei_wdt_driver);
|
||||
}
|
||||
|
||||
module_init(mei_wdt_init);
|
||||
module_exit(mei_wdt_exit);
|
||||
module_mei_cl_driver(mei_wdt_driver);
|
||||
|
||||
MODULE_AUTHOR("Intel Corporation");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
Loading…
Reference in New Issue
Block a user