diff options
author | Devendra Naga <devendra.aaru@gmail.com> | 2012-08-26 14:32:43 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-05 14:10:29 -0700 |
commit | 7e0b2cde502a7ea471ae7202ad88efdd7eaf3dbd (patch) | |
tree | 282f2d8933419082e1c3e3d38fbaba336c5a7ce3 /drivers/misc | |
parent | d6ae0d578d24303941c1424b049d2cae28277666 (diff) | |
download | linux-3.10-7e0b2cde502a7ea471ae7202ad88efdd7eaf3dbd.tar.gz linux-3.10-7e0b2cde502a7ea471ae7202ad88efdd7eaf3dbd.tar.bz2 linux-3.10-7e0b2cde502a7ea471ae7202ad88efdd7eaf3dbd.zip |
tifm: use module_pci_driver
tifm_7xx1_init and tifm_7xx1_exit with module_init and module_exit calls
can be replaced with the module_pci_driver call, as they are similar
to what module_pci_driver does
Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/tifm_7xx1.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/misc/tifm_7xx1.c b/drivers/misc/tifm_7xx1.c index ba247902267..f8d6654391e 100644 --- a/drivers/misc/tifm_7xx1.c +++ b/drivers/misc/tifm_7xx1.c @@ -434,21 +434,9 @@ static struct pci_driver tifm_7xx1_driver = { .resume = tifm_7xx1_resume, }; -static int __init tifm_7xx1_init(void) -{ - return pci_register_driver(&tifm_7xx1_driver); -} - -static void __exit tifm_7xx1_exit(void) -{ - pci_unregister_driver(&tifm_7xx1_driver); -} - +module_pci_driver(tifm_7xx1_driver); MODULE_AUTHOR("Alex Dubov"); MODULE_DESCRIPTION("TI FlashMedia host driver"); MODULE_LICENSE("GPL"); MODULE_DEVICE_TABLE(pci, tifm_7xx1_pci_tbl); MODULE_VERSION(DRIVER_VERSION); - -module_init(tifm_7xx1_init); -module_exit(tifm_7xx1_exit); |