From: Libo Chen Date: Fri, 13 Sep 2013 21:52:03 +0000 (-0700) Subject: drivers/atm/he.c: convert to module_pci_driver X-Git-Tag: upstream/snapshot3+hdmi~4276^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a2a69f0b35762410c4194f9827354310f68470be;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git drivers/atm/he.c: convert to module_pci_driver Signed-off-by: Libo Chen Cc: Chas Williams Signed-off-by: Andrew Morton Signed-off-by: David S. Miller --- diff --git a/drivers/atm/he.c b/drivers/atm/he.c index 449f629..8557adc 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);