1
0
Fork 0

mfd: lpc_ich: Convert to module_pci_driver

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

Signed-off-by: Libo Chen <libo.chen@huawei.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
hifive-unleashed-5.1
Libo Chen 2013-05-27 10:28:56 +08:00 committed by Samuel Ortiz
parent 2d3aa0569c
commit b4d0fe9c90
1 changed files with 1 additions and 12 deletions

View File

@ -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");