Merge remote-tracking branch 'regmap/fix/raw' into regmap-linus

This commit is contained in:
Mark Brown 2015-09-04 17:22:07 +01:00
commit f747416153

View file

@ -2184,6 +2184,11 @@ int regmap_raw_read(struct regmap *map, unsigned int reg, void *val,
if (regmap_volatile_range(map, reg, val_count) || map->cache_bypass ||
map->cache_type == REGCACHE_NONE) {
if (!map->bus->read) {
ret = -ENOTSUPP;
goto out;
}
/* Physical block read if there's no cache involved */
ret = _regmap_raw_read(map, reg, val, val_len);