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
Родитель b3959b5cd3 9a16ea900f
Коммит f747416153
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

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