Lines Matching defs:enable
493 * @enable: flag if changes should be written to the hardware
501 void regcache_cache_only(struct regmap *map, bool enable)
504 WARN_ON(map->cache_bypass && enable);
505 map->cache_only = enable;
506 trace_regmap_cache_only(map, enable);
537 * @enable: flag if changes should not be written to the cache
544 void regcache_cache_bypass(struct regmap *map, bool enable)
547 WARN_ON(map->cache_only && enable);
548 map->cache_bypass = enable;
549 trace_regmap_cache_bypass(map, enable);