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_acpi.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_acpi.c')
-rw-r--r-- | drivers/ata/pata_acpi.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/ata/pata_acpi.c b/drivers/ata/pata_acpi.c index b63ca3b54fb9..09723b76beac 100644 --- a/drivers/ata/pata_acpi.c +++ b/drivers/ata/pata_acpi.c | |||
@@ -273,22 +273,10 @@ static struct pci_driver pacpi_pci_driver = { | |||
273 | #endif | 273 | #endif |
274 | }; | 274 | }; |
275 | 275 | ||
276 | static int __init pacpi_init(void) | 276 | module_pci_driver(pacpi_pci_driver); |
277 | { | ||
278 | return pci_register_driver(&pacpi_pci_driver); | ||
279 | } | ||
280 | |||
281 | static void __exit pacpi_exit(void) | ||
282 | { | ||
283 | pci_unregister_driver(&pacpi_pci_driver); | ||
284 | } | ||
285 | |||
286 | module_init(pacpi_init); | ||
287 | module_exit(pacpi_exit); | ||
288 | 277 | ||
289 | MODULE_AUTHOR("Alan Cox"); | 278 | MODULE_AUTHOR("Alan Cox"); |
290 | MODULE_DESCRIPTION("SCSI low-level driver for ATA in ACPI mode"); | 279 | MODULE_DESCRIPTION("SCSI low-level driver for ATA in ACPI mode"); |
291 | MODULE_LICENSE("GPL"); | 280 | MODULE_LICENSE("GPL"); |
292 | MODULE_DEVICE_TABLE(pci, pacpi_pci_tbl); | 281 | MODULE_DEVICE_TABLE(pci, pacpi_pci_tbl); |
293 | MODULE_VERSION(DRV_VERSION); | 282 | MODULE_VERSION(DRV_VERSION); |
294 | |||