mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 08:30:54 +07:00
regulator: ab8500: Remove ab8500_regulator_debug_init/exit()
CONFIG_REGULATOR_AB8500_DEBUG is always not defined. ab8500_regulator_debug_init() is not called at all now, ab8500_regulator_debug_exit() simply return 0, thus remove them. Signed-off-by: Axel Lin <axel.lin@ingics.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
a5c1a41601
commit
03187c72db
@ -3071,21 +3071,8 @@ static int ab8500_regulator_probe(struct platform_device *pdev)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ab8500_regulator_remove(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
int err;
|
|
||||||
|
|
||||||
/* remove regulator debug */
|
|
||||||
err = ab8500_regulator_debug_exit(pdev);
|
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct platform_driver ab8500_regulator_driver = {
|
static struct platform_driver ab8500_regulator_driver = {
|
||||||
.probe = ab8500_regulator_probe,
|
.probe = ab8500_regulator_probe,
|
||||||
.remove = ab8500_regulator_remove,
|
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "ab8500-regulator",
|
.name = "ab8500-regulator",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
@ -322,18 +322,4 @@ struct ab8500_regulator_platform_data {
|
|||||||
struct regulator_init_data *ext_regulator;
|
struct regulator_init_data *ext_regulator;
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_REGULATOR_AB8500_DEBUG
|
|
||||||
int ab8500_regulator_debug_init(struct platform_device *pdev);
|
|
||||||
int ab8500_regulator_debug_exit(struct platform_device *pdev);
|
|
||||||
#else
|
|
||||||
static inline int ab8500_regulator_debug_init(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
static inline int ab8500_regulator_debug_exit(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user