]> Pileus Git - ~andy/linux/commit
regulator: core: Replace direct ops->enable usage
authorMarkus Pargmann <mpa@pengutronix.de>
Thu, 20 Feb 2014 16:36:03 +0000 (17:36 +0100)
committerMark Brown <broonie@linaro.org>
Tue, 25 Feb 2014 01:31:25 +0000 (10:31 +0900)
commit30c219710358c5cca2f8bd2e9e547c6aadf7cf8b
tree9bc91fd18c9f1b6b82a851ab066a39b9ebb76bdd
parentacc3d5cec84f82ebea535fa0bd9500ac3df2aee9
regulator: core: Replace direct ops->enable usage

There are some direct ops->enable in the regulator core driver. This is
a potential issue as the function _regulator_do_enable() handles gpio
regulators and the normal ops->enable calls. These gpio regulators are
simply ignored when ops->enable is called directly.

One possible bug is that boot-on and always-on gpio regulators are not
enabled on registration.

This patch replaces all ops->enable calls by _regulator_do_enable.

[Handle missing enable operations -- broonie]

Cc: <stable@vger.kernel.org> # 3.10+
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
regulator: Handle invalid enable operation for always/boot on regulators

Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/regulator/core.c