regmap: Fix return code for stub regmap_get_device()

We return a pointer, not an int.

Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Mark Brown 2014-07-25 19:01:53 +01:00
parent fa2fbe4a98
commit 1d33dc6b0f

View file

@ -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