diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-04-03 09:59:44 +0800 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-05-13 22:47:19 -0500 |
commit | 4d16cd658700a36af8788a09b4789d09da355a8c (patch) | |
tree | 2674d8ff91911be1b278fcadce616254e6bedf56 /drivers/mtd/maps/scb2_flash.c | |
parent | 4aa6ae3ecca04d7956817170418c74861ce071de (diff) | |
download | linux-stable-4d16cd658700a36af8788a09b4789d09da355a8c.tar.gz linux-stable-4d16cd658700a36af8788a09b4789d09da355a8c.tar.bz2 linux-stable-4d16cd658700a36af8788a09b4789d09da355a8c.zip |
mtd: use module_pci_driver
This patch converts the drivers in drivers/mtd/* to use module_pci_driver()
macro which makes the code smaller and a bit simpler.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/maps/scb2_flash.c')
-rw-r--r-- | drivers/mtd/maps/scb2_flash.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/mtd/maps/scb2_flash.c b/drivers/mtd/maps/scb2_flash.c index 934a72c80078..9dcbc684abdb 100644 --- a/drivers/mtd/maps/scb2_flash.c +++ b/drivers/mtd/maps/scb2_flash.c @@ -234,20 +234,7 @@ static struct pci_driver scb2_flash_driver = { .remove = __devexit_p(scb2_flash_remove), }; -static int __init -scb2_flash_init(void) -{ - return pci_register_driver(&scb2_flash_driver); -} - -static void __exit -scb2_flash_exit(void) -{ - pci_unregister_driver(&scb2_flash_driver); -} - -module_init(scb2_flash_init); -module_exit(scb2_flash_exit); +module_pci_driver(scb2_flash_driver); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Tim Hockin <thockin@sun.com>"); |