diff options
author | Mark Brown | 2019-05-06 15:52:14 +0200 |
---|---|---|
committer | Mark Brown | 2019-05-06 15:52:14 +0200 |
commit | e2a23affe6a6a15111ae56edd7e4f3c9673ef201 (patch) | |
tree | a69d90bfe04ff687e8ccde00ddac9aea357e33e6 /include/linux/regulator/consumer.h | |
parent | Merge branch 'regulator-5.1' into regulator-linus (diff) | |
parent | regulator: core: simplify return value on suported_voltage (diff) | |
download | kernel-qcow2-linux-e2a23affe6a6a15111ae56edd7e4f3c9673ef201.tar.gz kernel-qcow2-linux-e2a23affe6a6a15111ae56edd7e4f3c9673ef201.tar.xz kernel-qcow2-linux-e2a23affe6a6a15111ae56edd7e4f3c9673ef201.zip |
Merge branch 'regulator-5.2' into regulator-next
Diffstat (limited to 'include/linux/regulator/consumer.h')
-rw-r--r-- | include/linux/regulator/consumer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index f3f76051e8b0..aaf3cee70439 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h @@ -478,6 +478,11 @@ static inline int regulator_is_supported_voltage(struct regulator *regulator, return 0; } +static inline unsigned int regulator_get_linear_step(struct regulator *regulator) +{ + return 0; +} + static inline int regulator_set_current_limit(struct regulator *regulator, int min_uA, int max_uA) { |