diff options
author | Philip Rakity <[email protected]> | 2012-11-20 18:07:41 +0100 |
---|---|---|
committer | Mark Brown <[email protected]> | 2012-11-21 19:03:12 +0900 |
commit | 1a8f85d402a2bf3b86c08c696a0adf36656f770a (patch) | |
tree | 73d712feea23c032779557f9568a312a3383cb4e | |
parent | f4a75d2eb7b1e2206094b901be09adb31ba63681 (diff) |
regulator: add missing prototype for regulator_is_supported_voltage
avoids needs for CONFIG_REGULATOR in sdhci.c
Signed-off-by: Philip Rakity <[email protected]>
Reviewed-by: Eric Miao <[email protected]>
Signed-off-by: Eric Miao <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | include/linux/regulator/consumer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index c43cd3556b1f..4e3ec91bc639 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h @@ -358,6 +358,10 @@ static inline void regulator_set_drvdata(struct regulator *regulator, { } +static inline int regulator_count_voltages(struct regulator *regulator) +{ + return 0; +} #endif static inline int regulator_set_voltage_tol(struct regulator *regulator, |