diff options
author | 2022-05-12 15:50:22 -0400 | |
---|---|---|
committer | 2022-05-12 15:50:22 -0400 | |
commit | 6c67f7cb594e3b28452c12b67c136c5f498bd369 (patch) | |
tree | 9464fee65f1cc1ed3f0a088f7c69344b9c49fb73 | |
parent | 0b68610f403f262b6cf52af0c80faf3027f99cf6 (diff) | |
parent | 1c80d994d3dbdaefb429305461e95a86be5b3862 (diff) | |
download | linux-yocto-v5.10/standard/preempt-rt/nxp-sdk-5.10/nxp-s32g2xx.tar.gz linux-yocto-v5.10/standard/preempt-rt/nxp-sdk-5.10/nxp-s32g2xx.tar.bz2 linux-yocto-v5.10/standard/preempt-rt/nxp-sdk-5.10/nxp-s32g2xx.zip |
Merge branch 'v5.10/standard/base' into v5.10/standard/preempt-rt/nxp-sdk-5.10/nxp-s32g2xxv5.10/standard/preempt-rt/nxp-sdk-5.10/nxp-s32g2xx
-rw-r--r-- | include/linux/regulator/consumer.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index 2024944fd2f7..20e84a84fb77 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h @@ -332,6 +332,12 @@ regulator_get_exclusive(struct device *dev, const char *id) } static inline struct regulator *__must_check +devm_regulator_get_exclusive(struct device *dev, const char *id) +{ + return ERR_PTR(-ENODEV); +} + +static inline struct regulator *__must_check regulator_get_optional(struct device *dev, const char *id) { return ERR_PTR(-ENODEV); @@ -486,6 +492,11 @@ static inline int regulator_get_voltage(struct regulator *regulator) return -EINVAL; } +static inline int regulator_sync_voltage(struct regulator *regulator) +{ + return -EINVAL; +} + static inline int regulator_is_supported_voltage(struct regulator *regulator, int min_uV, int max_uV) { @@ -578,6 +589,25 @@ static inline int devm_regulator_unregister_notifier(struct regulator *regulator return 0; } +static inline int regulator_suspend_enable(struct regulator_dev *rdev, + suspend_state_t state) +{ + return -EINVAL; +} + +static inline int regulator_suspend_disable(struct regulator_dev *rdev, + suspend_state_t state) +{ + return -EINVAL; +} + +static inline int regulator_set_suspend_voltage(struct regulator *regulator, + int min_uV, int max_uV, + suspend_state_t state) +{ + return -EINVAL; +} + static inline void *regulator_get_drvdata(struct regulator *regulator) { return NULL; |