Skip to content

Commit

Permalink
regulator: lp8788-ldo: Use platform_register/unregister_drivers()
Browse files Browse the repository at this point in the history
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: Thierry Reding <treding@nvidia.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Thierry Reding authored and Mark Brown committed Dec 2, 2015
1 parent 8005c49 commit 7629cef
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions drivers/regulator/lp8788-ldo.c
Original file line number Diff line number Diff line change
Expand Up @@ -613,22 +613,20 @@ static struct platform_driver lp8788_aldo_driver = {
},
};

static struct platform_driver * const drivers[] = {
&lp8788_dldo_driver,
&lp8788_aldo_driver,
};

static int __init lp8788_ldo_init(void)
{
int ret;

ret = platform_driver_register(&lp8788_dldo_driver);
if (ret)
return ret;

return platform_driver_register(&lp8788_aldo_driver);
return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
}
subsys_initcall(lp8788_ldo_init);

static void __exit lp8788_ldo_exit(void)
{
platform_driver_unregister(&lp8788_aldo_driver);
platform_driver_unregister(&lp8788_dldo_driver);
platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
}
module_exit(lp8788_ldo_exit);

Expand Down

0 comments on commit 7629cef

Please sign in to comment.