aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-06-13 09:29:16 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-06-13 11:37:43 -0400
commitbd3810a58ba9c16702450c643ea3c557668185db (patch)
tree36f48d8f47afb10d0c89991c0a053c8191575db6 /include/linux
parentb026ddbbd25e3560c8d69beb96a5980d96c59b43 (diff)
regmap: Remove warning on stubbed dev_get_regmap()
It's perfectly sensible to ask if there's a regmap for a device which doesn't have one so the stubbed version shouldn't complain, the caller should be prepared for this. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/regmap.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h
index f9b624c83464..4191a4281587 100644
--- a/include/linux/regmap.h
+++ b/include/linux/regmap.h
@@ -386,7 +386,6 @@ static inline int regmap_register_patch(struct regmap *map,
386static inline struct regmap *dev_get_regmap(struct device *dev, 386static inline struct regmap *dev_get_regmap(struct device *dev,
387 const char *name) 387 const char *name)
388{ 388{
389 WARN_ONCE(1, "regmap API is disabled");
390 return NULL; 389 return NULL;
391} 390}
392 391