[PATCH] regmap: Fix return code for stub regmap_get_device()

From: Mark Brown
Date: Fri Jul 25 2014 - 14:03:09 EST


From: Mark Brown <broonie@xxxxxxxxxx>

We return a pointer, not an int.

Signed-off-by: Mark Brown <broonie@xxxxxxxxxx>
---
include/linux/regmap.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/regmap.h b/include/linux/regmap.h
index cd480fd59795..c5ed83f49c4e 100644
--- a/include/linux/regmap.h
+++ b/include/linux/regmap.h
@@ -733,7 +733,7 @@ static inline struct regmap *dev_get_regmap(struct device *dev,
static inline struct device *regmap_get_device(struct regmap *map)
{
WARN_ONCE(1, "regmap API is disabled");
- return -EINVAL;
+ return NULL;
}

#endif
--
2.0.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/