diff options
author | Mark Brown <broonie@linaro.org> | 2013-09-13 19:50:37 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-17 00:30:25 +0100 |
commit | 4ddfebd3b0d5b65c69492408bb67fd1202104643 (patch) | |
tree | 75f540d31a044399680db0f8a8b756f733b39ffb /drivers/regulator/Kconfig | |
parent | 272b98c6455f00884f0350f775c5342358ebb73f (diff) | |
download | kernel_replicant_linux-4ddfebd3b0d5b65c69492408bb67fd1202104643.tar.gz kernel_replicant_linux-4ddfebd3b0d5b65c69492408bb67fd1202104643.tar.bz2 kernel_replicant_linux-4ddfebd3b0d5b65c69492408bb67fd1202104643.zip |
regulator: core: Provide a dummy regulator with full constraints
When a system has said that it has fully specified constraints for its
regulators it is still possible that some supplies may be missing,
especially if regulator support has been added to a driver after the
board was integrated. We can handle such situations more gracefully by
providing a dummy regulator.
Unless the caller has specifically indicated that the system design may
not include a given regulator by using regulator_get_optional() or that
it needs its interactions to have an effect using regulator_get_exclusive()
provide a dummy regulator if we can't locate a real one.
The kconfig option REGULATOR_DUMMY that provided similar behaviour for all
regulators has been removed, systems that need it should flag that they
have full constraints instead.
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/Kconfig')
-rw-r--r-- | drivers/regulator/Kconfig | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index dfe58096b374..0417ce327cd8 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -28,16 +28,6 @@ config REGULATOR_DEBUG help Say yes here to enable debugging support. -config REGULATOR_DUMMY - bool "Provide a dummy regulator if regulator lookups fail" - help - If this option is enabled then when a regulator lookup fails - and the board has not specified that it has provided full - constraints the regulator core will provide an always - enabled dummy regulator, allowing consumer drivers to continue. - - A warning will be generated when this substitution is done. - config REGULATOR_FIXED_VOLTAGE tristate "Fixed voltage regulator support" help |