Home
last modified time | relevance | path

Searched refs:sync_ret (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/base/regmap/
H A Dregcache.c423 int sync_ret = 0; in regcache_sync() local
455 sync_ret = _regmap_write(map, map->patch[i].reg, map->patch[i].def); in regcache_sync()
456 if (sync_ret != 0) { in regcache_sync()
458 map->patch[i].reg, map->patch[i].def, sync_ret); in regcache_sync()
465 sync_ret = map->cache_ops->sync(map, 0, map->max_register); in regcache_sync()
467 sync_ret = regcache_default_sync(map, 0, map->max_register); in regcache_sync()
469 if (sync_ret == 0) in regcache_sync()
506 return sync_ret ? sync_ret : selector_ret; in regcache_sync()