Skip to content

Commit

Permalink
regulator: core: Add support for active-discharge configuration
Browse files Browse the repository at this point in the history
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 <ldewangan@nvidia.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Laxman Dewangan authored and Mark Brown committed Mar 2, 2016
1 parent 07a0669 commit 909f7ee
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions drivers/regulator/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 909f7ee

Please sign in to comment.