Browse Source

regmap: Add stub for regcache_sync_region()

Added on another branch.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown 13 năm trước cách đây
mục cha
commit
a313f9f565
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  1. 7 0
      include/linux/regmap.h

+ 7 - 0
include/linux/regmap.h

@@ -280,6 +280,13 @@ static inline int regcache_sync(struct regmap *map)
 	return -EINVAL;
 }
 
+static inline int regcache_sync_region(struct regmap *map, unsigned int min,
+				       unsigned int max)
+{
+	WARN_ONCE(1, "regmap API is disabled");
+	return -EINVAL;
+}
+
 static inline void regcache_cache_only(struct regmap *map, bool enable)
 {
 	WARN_ONCE(1, "regmap API is disabled");