提交 3b5dde70 编写于 作者: T Thierry Reding 提交者: David S. Miller

net: mv643xx: Use platform_register/unregister_drivers()

These new helpers simplify implementing multi-driver modules and
properly handle failure to register one driver by unregistering all
previously registered drivers.
Signed-off-by: NThierry Reding <treding@nvidia.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 8c7d3972
...@@ -3257,25 +3257,20 @@ static struct platform_driver mv643xx_eth_driver = { ...@@ -3257,25 +3257,20 @@ static struct platform_driver mv643xx_eth_driver = {
}, },
}; };
static struct platform_driver * const drivers[] = {
&mv643xx_eth_shared_driver,
&mv643xx_eth_driver,
};
static int __init mv643xx_eth_init_module(void) static int __init mv643xx_eth_init_module(void)
{ {
int rc; return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
rc = platform_driver_register(&mv643xx_eth_shared_driver);
if (!rc) {
rc = platform_driver_register(&mv643xx_eth_driver);
if (rc)
platform_driver_unregister(&mv643xx_eth_shared_driver);
}
return rc;
} }
module_init(mv643xx_eth_init_module); module_init(mv643xx_eth_init_module);
static void __exit mv643xx_eth_cleanup_module(void) static void __exit mv643xx_eth_cleanup_module(void)
{ {
platform_driver_unregister(&mv643xx_eth_driver); platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
platform_driver_unregister(&mv643xx_eth_shared_driver);
} }
module_exit(mv643xx_eth_cleanup_module); module_exit(mv643xx_eth_cleanup_module);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册