summaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorLibo Chen <libo.chen@huawei.com>2013-05-27 10:28:53 +0800
committerBjorn Helgaas <bhelgaas@google.com>2013-05-27 17:05:28 -0600
commit54a582382d997ec142a4700f9171cc28e3a9b8f6 (patch)
tree349f8d44a6f072ef10705f191187b26cc0daac52 /drivers/pci
parent2add0ec14c259471d45d6afd051ca02eef0a4a92 (diff)
downloadlinux-54a582382d997ec142a4700f9171cc28e3a9b8f6.tar.gz
linux-54a582382d997ec142a4700f9171cc28e3a9b8f6.tar.xz
PCI: Convert ioapic.c to module_pci_driver
Use module_pci_driver instead of init/exit, make code clean. Signed-off-by: Libo Chen <libo.chen@huawei.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/ioapic.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/pci/ioapic.c b/drivers/pci/ioapic.c
index 3c6bbdd059a4..1b90579b233a 100644
--- a/drivers/pci/ioapic.c
+++ b/drivers/pci/ioapic.c
@@ -113,17 +113,6 @@ static struct pci_driver ioapic_driver = {
.remove = ioapic_remove,
};
-static int __init ioapic_init(void)
-{
- return pci_register_driver(&ioapic_driver);
-}
-
-static void __exit ioapic_exit(void)
-{
- pci_unregister_driver(&ioapic_driver);
-}
-
-module_init(ioapic_init);
-module_exit(ioapic_exit);
+module_pci_driver(ioapic_driver);
MODULE_LICENSE("GPL");