Commit 1d33dc6b authored by Mark Brown's avatar Mark Brown

regmap: Fix return code for stub regmap_get_device()

We return a pointer, not an int.
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent fa2fbe4a
...@@ -733,7 +733,7 @@ static inline struct regmap *dev_get_regmap(struct device *dev, ...@@ -733,7 +733,7 @@ static inline struct regmap *dev_get_regmap(struct device *dev,
static inline struct device *regmap_get_device(struct regmap *map) static inline struct device *regmap_get_device(struct regmap *map)
{ {
WARN_ONCE(1, "regmap API is disabled"); WARN_ONCE(1, "regmap API is disabled");
return -EINVAL; return NULL;
} }
#endif #endif
......
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