From: Laxman Dewangan Date: Wed, 2 Mar 2016 10:54:46 +0000 (+0530) Subject: regulator: core: Add support for active-discharge configuration X-Git-Tag: next-20160307~51^2~1^3~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=909f7ee0b5f3;p=karo-tx-linux.git regulator: core: Add support for active-discharge configuration Add support to enable/disable active discharge of regulator via machine constraints. This configuration is done when setting machine constraint during regulator register and if regulator driver implemented the callback ops. Signed-off-by: Laxman Dewangan Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 7ebb7c899158..5b1e049a5930 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -1151,6 +1151,17 @@ static int set_machine_constraints(struct regulator_dev *rdev, } } + if (rdev->constraints->active_discharge && ops->set_active_discharge) { + bool ad_state = (rdev->constraints->active_discharge == + REGULATOR_ACTIVE_DISCHARGE_ENABLE) ? true : false; + + ret = ops->set_active_discharge(rdev, ad_state); + if (ret < 0) { + rdev_err(rdev, "failed to set active discharge\n"); + return ret; + } + } + print_constraints(rdev); return 0; out: