diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-27 11:44:17 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-29 00:25:05 -0500 |
commit | db62f684deeb291ab2533b99843d5df9a36b1f19 (patch) | |
tree | 995a648ecfd7374e546a2945ba6328ea2432d431 /drivers/net/ethernet/seeq | |
parent | 871d33725545ca2e402b4526f38f89d041ba930f (diff) |
net/ethernet: convert drivers/net/ethernet/* to use module_platform_driver()
This patch converts the drivers in drivers/net/ethernet/* to use the
module_platform_driver() macro which makes the code smaller and a bit
simpler.
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Pantelis Antoniou <pantelis.antoniou@gmail.com>
Cc: Vitaly Bordug <vbordug@ru.mvista.com>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: Nicolas Pitre <nico@fluxnic.net>
Cc: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Cc: Marc Kleine-Budde <mkl@pengutronix.de>
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Cc: Jiri Pirko <jpirko@redhat.com>
Cc: Daniel Hellstrom <daniel@gaisler.com>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Tobias Klauser <tklauser@distanz.ch>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Jiri Kosina <jkosina@suse.cz>
Cc: Richard Cochran <richard.cochran@omicron.at>
Cc: Jonas Bonn <jonas@southpole.se>
Cc: Sebastian Poehn <sebastian.poehn@belden.com>
Cc: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Cc: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Cc: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Wan ZongShun <mcuos.com@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/seeq')
-rw-r--r-- | drivers/net/ethernet/seeq/sgiseeq.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/drivers/net/ethernet/seeq/sgiseeq.c b/drivers/net/ethernet/seeq/sgiseeq.c index c3673f151a41..f955a19eb22f 100644 --- a/drivers/net/ethernet/seeq/sgiseeq.c +++ b/drivers/net/ethernet/seeq/sgiseeq.c | |||
@@ -834,23 +834,7 @@ static struct platform_driver sgiseeq_driver = { | |||
834 | } | 834 | } |
835 | }; | 835 | }; |
836 | 836 | ||
837 | static int __init sgiseeq_module_init(void) | 837 | module_platform_driver(sgiseeq_driver); |
838 | { | ||
839 | if (platform_driver_register(&sgiseeq_driver)) { | ||
840 | printk(KERN_ERR "Driver registration failed\n"); | ||
841 | return -ENODEV; | ||
842 | } | ||
843 | |||
844 | return 0; | ||
845 | } | ||
846 | |||
847 | static void __exit sgiseeq_module_exit(void) | ||
848 | { | ||
849 | platform_driver_unregister(&sgiseeq_driver); | ||
850 | } | ||
851 | |||
852 | module_init(sgiseeq_module_init); | ||
853 | module_exit(sgiseeq_module_exit); | ||
854 | 838 | ||
855 | MODULE_DESCRIPTION("SGI Seeq 8003 driver"); | 839 | MODULE_DESCRIPTION("SGI Seeq 8003 driver"); |
856 | MODULE_AUTHOR("Linux/MIPS Mailing List <linux-mips@linux-mips.org>"); | 840 | MODULE_AUTHOR("Linux/MIPS Mailing List <linux-mips@linux-mips.org>"); |