From: Jingoo Han Date: Mon, 4 Mar 2013 16:43:50 +0000 (+0000) Subject: net: cs89x0: use module_platform_driver_probe() X-Git-Tag: v3.10-rc1~66^2~568 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fae4f3cf49ac9d91b83c705809d71fdeb0dc9284;p=platform%2Fupstream%2Fkernel-adaptation-pc.git net: cs89x0: use module_platform_driver_probe() This patch uses module_platform_driver_probe() macro which makes the code smaller and simpler. Signed-off-by: Jingoo Han Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/cirrus/cs89x0.c b/drivers/net/ethernet/cirrus/cs89x0.c index 1384469..73c1c8c 100644 --- a/drivers/net/ethernet/cirrus/cs89x0.c +++ b/drivers/net/ethernet/cirrus/cs89x0.c @@ -1978,18 +1978,6 @@ static struct platform_driver cs89x0_driver = { .remove = cs89x0_platform_remove, }; -static int __init cs89x0_init(void) -{ - return platform_driver_probe(&cs89x0_driver, cs89x0_platform_probe); -} - -module_init(cs89x0_init); - -static void __exit cs89x0_cleanup(void) -{ - platform_driver_unregister(&cs89x0_driver); -} - -module_exit(cs89x0_cleanup); +module_platform_driver_probe(cs89x0_driver, cs89x0_platform_probe); #endif /* CONFIG_CS89x0_PLATFORM */