Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b4d0fe9c authored by Libo Chen's avatar Libo Chen Committed by Samuel Ortiz
Browse files

mfd: lpc_ich: Convert to module_pci_driver



use module_pci_driver instead of init/exit, make code cleaner.

Signed-off-by: default avatarLibo Chen <libo.chen@huawei.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 2d3aa056
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -983,18 +983,7 @@ static struct pci_driver lpc_ich_driver = {
	.remove		= lpc_ich_remove,
};

static int __init lpc_ich_init(void)
{
	return pci_register_driver(&lpc_ich_driver);
}

static void __exit lpc_ich_exit(void)
{
	pci_unregister_driver(&lpc_ich_driver);
}

module_init(lpc_ich_init);
module_exit(lpc_ich_exit);
module_pci_driver(lpc_ich_driver);

MODULE_AUTHOR("Aaron Sierra <asierra@xes-inc.com>");
MODULE_DESCRIPTION("LPC interface for Intel ICH");