aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/atm
diff options
context:
space:
mode:
authorLibo Chen <clbchenlibo.chen@huawei.com>2013-09-13 14:52:03 -0700
committerDavid S. Miller <davem@davemloft.net>2013-09-13 20:02:50 -0400
commita2a69f0b35762410c4194f9827354310f68470be (patch)
treeb2b39d5890ce122bbf4b6e2e09d5976f5603ac28 /drivers/atm
parentMerge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net (diff)
downloadlinux-dev-a2a69f0b35762410c4194f9827354310f68470be.tar.xz
linux-dev-a2a69f0b35762410c4194f9827354310f68470be.zip
drivers/atm/he.c: convert to module_pci_driver
Signed-off-by: Libo Chen <libo.chen@huawei.com> Cc: Chas Williams <chas@cmf.nrl.navy.mil> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm')
-rw-r--r--drivers/atm/he.c13
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);