From: Mark Brown Date: Mon, 23 Oct 2023 17:19:11 +0000 (+0100) Subject: regmap: kunit: Fix marking of the range window as volatile X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fabe32cc1eca7857837abcb56b242bc4845b7067;p=linux.git regmap: kunit: Fix marking of the range window as volatile For some reason the regmap used for testing ranges was not including the end of the range of paged registers as volatile since it found the end by counting from the selector register rather than the base of the window. Signed-off-by: Mark Brown Link: https://lore.kernel.org/r/20231023-regmap-test-window-cache-v1-1-d8a71f441968@kernel.org Signed-off-by: Mark Brown --- diff --git a/drivers/base/regmap/regmap-kunit.c b/drivers/base/regmap/regmap-kunit.c index 264d29b3fced0..f79fd5ec187ea 100644 --- a/drivers/base/regmap/regmap-kunit.c +++ b/drivers/base/regmap/regmap-kunit.c @@ -445,7 +445,7 @@ static struct regmap_range_cfg test_range = { static bool test_range_volatile(struct device *dev, unsigned int reg) { if (reg >= test_range.window_start && - reg <= test_range.selector_reg + test_range.window_len) + reg <= test_range.window_start + test_range.window_len) return true; if (reg >= test_range.range_min && reg <= test_range.range_max)