diff options
| author | Jingoo Han <[email protected]> | 2014-01-21 14:39:20 -0800 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2014-01-21 20:16:56 -0800 |
| commit | 28e6c50069ae55ff15da1e64245286cc27901b96 (patch) | |
| tree | 75970fa2c41667be80e97f6266483780002531a2 | |
| parent | 9dd6358a21daf4fc6a5b2b779267a62f0d1d3181 (diff) | |
drivers/block/sx8.c: use module_pci_driver()
Use module_pci_driver() macro which makes the code smaller and simpler.
Signed-off-by: Jingoo Han <[email protected]>
Cc: Jens Axboe <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
| -rw-r--r-- | drivers/block/sx8.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/block/sx8.c b/drivers/block/sx8.c index 3fb6ab4c8b4e..7b2ac9573984 100644 --- a/drivers/block/sx8.c +++ b/drivers/block/sx8.c @@ -1747,17 +1747,4 @@ static void carm_remove_one (struct pci_dev *pdev) pci_set_drvdata(pdev, NULL); } -static int __init carm_init(void) -{ - return pci_register_driver(&carm_driver); -} - -static void __exit carm_exit(void) -{ - pci_unregister_driver(&carm_driver); -} - -module_init(carm_init); -module_exit(carm_exit); - - +module_pci_driver(carm_driver); |