diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-04-19 01:43:05 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-07-25 15:12:11 -0400 |
commit | 2fc75da0c59634b81223af497c4a037822f6e457 (patch) | |
tree | 0b114f6b6c9a790e4b37c9c3ea966aeefb6a1daf /drivers/ata/pata_rz1000.c | |
parent | b08f5bc40424a3c4b4c884257441141b23cfa795 (diff) |
ata: use module_pci_driver
This patch converts the drivers in drivers/ata/* to use module_pci_driver()
macro which makes the code smaller and a bit simpler.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Cc: Alan Cox <alan@linux.intel.com>
Cc: Jeff Garzik <jgarzik@pobox.com>
Cc: Mikael Pettersson <mikpe@it.uu.se>
Cc: Mark Lord <kernel@teksavvy.com>
Cc: Jeremy Higdon <jeremy@sgi.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/pata_rz1000.c')
-rw-r--r-- | drivers/ata/pata_rz1000.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/ata/pata_rz1000.c b/drivers/ata/pata_rz1000.c index aca321e1e6a2..60f4de2dd47d 100644 --- a/drivers/ata/pata_rz1000.c +++ b/drivers/ata/pata_rz1000.c | |||
@@ -140,22 +140,10 @@ static struct pci_driver rz1000_pci_driver = { | |||
140 | #endif | 140 | #endif |
141 | }; | 141 | }; |
142 | 142 | ||
143 | static int __init rz1000_init(void) | 143 | module_pci_driver(rz1000_pci_driver); |
144 | { | ||
145 | return pci_register_driver(&rz1000_pci_driver); | ||
146 | } | ||
147 | |||
148 | static void __exit rz1000_exit(void) | ||
149 | { | ||
150 | pci_unregister_driver(&rz1000_pci_driver); | ||
151 | } | ||
152 | 144 | ||
153 | MODULE_AUTHOR("Alan Cox"); | 145 | MODULE_AUTHOR("Alan Cox"); |
154 | MODULE_DESCRIPTION("low-level driver for RZ1000 PCI ATA"); | 146 | MODULE_DESCRIPTION("low-level driver for RZ1000 PCI ATA"); |
155 | MODULE_LICENSE("GPL"); | 147 | MODULE_LICENSE("GPL"); |
156 | MODULE_DEVICE_TABLE(pci, pata_rz1000); | 148 | MODULE_DEVICE_TABLE(pci, pata_rz1000); |
157 | MODULE_VERSION(DRV_VERSION); | 149 | MODULE_VERSION(DRV_VERSION); |
158 | |||
159 | module_init(rz1000_init); | ||
160 | module_exit(rz1000_exit); | ||
161 | |||