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/sata_qstor.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/sata_qstor.c')
-rw-r--r-- | drivers/ata/sata_qstor.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/ata/sata_qstor.c b/drivers/ata/sata_qstor.c index 9d1a47bb21b3..3b0dd57984e1 100644 --- a/drivers/ata/sata_qstor.c +++ b/drivers/ata/sata_qstor.c | |||
@@ -635,21 +635,10 @@ static int qs_ata_init_one(struct pci_dev *pdev, | |||
635 | &qs_ata_sht); | 635 | &qs_ata_sht); |
636 | } | 636 | } |
637 | 637 | ||
638 | static int __init qs_ata_init(void) | 638 | module_pci_driver(qs_ata_pci_driver); |
639 | { | ||
640 | return pci_register_driver(&qs_ata_pci_driver); | ||
641 | } | ||
642 | |||
643 | static void __exit qs_ata_exit(void) | ||
644 | { | ||
645 | pci_unregister_driver(&qs_ata_pci_driver); | ||
646 | } | ||
647 | 639 | ||
648 | MODULE_AUTHOR("Mark Lord"); | 640 | MODULE_AUTHOR("Mark Lord"); |
649 | MODULE_DESCRIPTION("Pacific Digital Corporation QStor SATA low-level driver"); | 641 | MODULE_DESCRIPTION("Pacific Digital Corporation QStor SATA low-level driver"); |
650 | MODULE_LICENSE("GPL"); | 642 | MODULE_LICENSE("GPL"); |
651 | MODULE_DEVICE_TABLE(pci, qs_ata_pci_tbl); | 643 | MODULE_DEVICE_TABLE(pci, qs_ata_pci_tbl); |
652 | MODULE_VERSION(DRV_VERSION); | 644 | MODULE_VERSION(DRV_VERSION); |
653 | |||
654 | module_init(qs_ata_init); | ||
655 | module_exit(qs_ata_exit); | ||