Commit 5c437f42 authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branch 'regulator/fix/core' into regulator-linus

parents a798c10f df7926ff
...@@ -258,14 +258,14 @@ regulator_get_exclusive(struct device *dev, const char *id) ...@@ -258,14 +258,14 @@ regulator_get_exclusive(struct device *dev, const char *id)
static inline struct regulator *__must_check static inline struct regulator *__must_check
regulator_get_optional(struct device *dev, const char *id) regulator_get_optional(struct device *dev, const char *id)
{ {
return NULL; return ERR_PTR(-ENODEV);
} }
static inline struct regulator *__must_check static inline struct regulator *__must_check
devm_regulator_get_optional(struct device *dev, const char *id) devm_regulator_get_optional(struct device *dev, const char *id)
{ {
return NULL; return ERR_PTR(-ENODEV);
} }
static inline void regulator_put(struct regulator *regulator) static inline void regulator_put(struct regulator *regulator)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment