Skip to content

Commit

Permalink
mfd: lpc_ich: Convert to module_pci_driver
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Libo Chen authored and Samuel Ortiz committed Jun 18, 2013
1 parent 2d3aa05 commit b4d0fe9
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions drivers/mfd/lpc_ich.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit b4d0fe9

Please sign in to comment.