mirror of https://gitee.com/openkylin/linux.git
PNP: platform/x86/apple-gmux: Use module_pnp_driver to register driver
Removing some boilerplate by using module_pnp_driver instead of calling register and unregister in the otherwise empty init/exit functions Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
ed03538aa8
commit
99f74f12e8
|
@ -624,19 +624,7 @@ static struct pnp_driver gmux_pnp_driver = {
|
|||
},
|
||||
};
|
||||
|
||||
static int __init apple_gmux_init(void)
|
||||
{
|
||||
return pnp_register_driver(&gmux_pnp_driver);
|
||||
}
|
||||
|
||||
static void __exit apple_gmux_exit(void)
|
||||
{
|
||||
pnp_unregister_driver(&gmux_pnp_driver);
|
||||
}
|
||||
|
||||
module_init(apple_gmux_init);
|
||||
module_exit(apple_gmux_exit);
|
||||
|
||||
module_pnp_driver(gmux_pnp_driver);
|
||||
MODULE_AUTHOR("Seth Forshee <seth.forshee@canonical.com>");
|
||||
MODULE_DESCRIPTION("Apple Gmux Driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
Loading…
Reference in New Issue