diff options
author | Libo Chen <[email protected]> | 2013-09-13 14:52:03 -0700 |
---|---|---|
committer | David S. Miller <[email protected]> | 2013-09-13 20:02:50 -0400 |
commit | a2a69f0b35762410c4194f9827354310f68470be (patch) | |
tree | b2b39d5890ce122bbf4b6e2e09d5976f5603ac28 | |
parent | c9771bfd6ddae11cea367cd544e2c9d193f1f305 (diff) |
drivers/atm/he.c: convert to module_pci_driver
Signed-off-by: Libo Chen <[email protected]>
Cc: Chas Williams <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | drivers/atm/he.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/atm/he.c b/drivers/atm/he.c index 449f6298dc89..8557adcd34ee 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c @@ -2865,15 +2865,4 @@ static struct pci_driver he_driver = { .id_table = he_pci_tbl, }; -static int __init he_init(void) -{ - return pci_register_driver(&he_driver); -} - -static void __exit he_cleanup(void) -{ - pci_unregister_driver(&he_driver); -} - -module_init(he_init); -module_exit(he_cleanup); +module_pci_driver(he_driver); |