lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Tue, 5 Mar 2013 09:41:53 +0000
From:	"Ferre, Nicolas" <Nicolas.FERRE@...el.com>
To:	Sachin Kamat <sachin.kamat@...aro.org>,
	"netdev@...r.kernel.org" <netdev@...r.kernel.org>
CC:	"davem@...emloft.net" <davem@...emloft.net>
Subject: RE : [PATCH 2/3] net: at91_ether: Use module_platform_driver_probe
 macro

> module_platform_driver_probe() eliminates the boilerplate and simplifies
> the code.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@...aro.org>
> Cc: Nicolas Ferre <nicolas.ferre@...el.com>

Acked-by: Nicolas Ferre <nicolas.ferre@...el.com>

> ---
>  drivers/net/ethernet/cadence/at91_ether.c |   13 +------------
>  1 files changed, 1 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/net/ethernet/cadence/at91_ether.c b/drivers/net/ethernet/cadence/at91_ether.c
> index 3becdb2..1a57e16 100644
> --- a/drivers/net/ethernet/cadence/at91_ether.c
> +++ b/drivers/net/ethernet/cadence/at91_ether.c
> @@ -519,18 +519,7 @@ static struct platform_driver at91ether_driver = {
>         },
>  };
> 
> -static int __init at91ether_init(void)
> -{
> -       return platform_driver_probe(&at91ether_driver, at91ether_probe);
> -}
> -
> -static void __exit at91ether_exit(void)
> -{
> -       platform_driver_unregister(&at91ether_driver);
> -}
> -
> -module_init(at91ether_init)
> -module_exit(at91ether_exit)
> +module_platform_driver_probe(at91ether_driver, at91ether_probe);
> 
>  MODULE_LICENSE("GPL");
>  MODULE_DESCRIPTION("AT91RM9200 EMAC Ethernet driver");
> --
> 1.7.4.1
> --
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ