[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <201207082339.17996.florian@openwrt.org>
Date: Sun, 8 Jul 2012 23:39:17 +0200
From: Florian Fainelli <florian@...nwrt.org>
To: Devendra Naga <devendra.aaru@...il.com>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH] r6040: use module_pci_driver macro
Le dimanche 08 juillet 2012 17:57:57, Devendra Naga a écrit :
> as the manual of module_pci_driver says that
> it can be used when the init and exit functions of
> the module does nothing but the pci_register_driver
> and pci_unregister_driver.
>
> use it for rdc's r6040 driver, as the init and exit
> paths does as above, and also this reduces a little
> amount of code.
>
> Signed-off-by: Devendra Naga <devendra.aaru@...il.com>
Acked-by: Florian Fainelli <florian@...nwrt.org>
> ---
> drivers/net/ethernet/rdc/r6040.c | 15 +--------------
> 1 file changed, 1 insertion(+), 14 deletions(-)
>
> diff --git a/drivers/net/ethernet/rdc/r6040.c
> b/drivers/net/ethernet/rdc/r6040.c index 9acc026..557a265 100644
> --- a/drivers/net/ethernet/rdc/r6040.c
> +++ b/drivers/net/ethernet/rdc/r6040.c
> @@ -1277,17 +1277,4 @@ static struct pci_driver r6040_driver = {
> .remove = __devexit_p(r6040_remove_one),
> };
>
> -
> -static int __init r6040_init(void)
> -{
> - return pci_register_driver(&r6040_driver);
> -}
> -
> -
> -static void __exit r6040_cleanup(void)
> -{
> - pci_unregister_driver(&r6040_driver);
> -}
> -
> -module_init(r6040_init);
> -module_exit(r6040_cleanup);
> +module_pci_driver(r6040_driver);
--
Florian
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists