Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 71df1793 authored by Charles Keepax's avatar Charles Keepax Committed by Mark Brown
Browse files

regmap: Correct comparison in regmap_cached



The cache pointer points to the actual memory used by the cache, as the
comparison here is looking for the type of the cache it should check
against cache_type.

Fixes: 1ea975cf ("regmap: Add a function to check if a regmap register is cached")
Signed-off-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7928b2cb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ bool regmap_cached(struct regmap *map, unsigned int reg)
	int ret;
	unsigned int val;

	if (map->cache == REGCACHE_NONE)
	if (map->cache_type == REGCACHE_NONE)
		return false;

	if (!map->cache_ops)