diff options
author | Mark Brown <broonie@kernel.org> | 2023-06-10 16:05:54 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-06-12 15:51:07 +0200 |
commit | d32758acbd4eee8ce95b705a6760526b4d26c2aa (patch) | |
tree | 25c05a5f14e5a2514d7ff92a99fafda50cad9a33 /drivers/base/regmap/internal.h | |
parent | regmap: maple: Implement block sync for the maple tree cache (diff) | |
download | linux-d32758acbd4eee8ce95b705a6760526b4d26c2aa.tar.xz linux-d32758acbd4eee8ce95b705a6760526b4d26c2aa.zip |
regmap: Don't check for changes in regcache_set_val()
The only user of regcache_set_val() ignores the return value so we may as
well not bother checking if the value we are trying to set is the same as
the value already stored.
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20230609-regcache-set-val-no-ret-v1-1-9a6932760cf8@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/base/regmap/internal.h')
-rw-r--r-- | drivers/base/regmap/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/internal.h b/drivers/base/regmap/internal.h index f993e2484f80..00848303b193 100644 --- a/drivers/base/regmap/internal.h +++ b/drivers/base/regmap/internal.h @@ -269,7 +269,7 @@ static inline const void *regcache_get_val_addr(struct regmap *map, unsigned int regcache_get_val(struct regmap *map, const void *base, unsigned int idx); -bool regcache_set_val(struct regmap *map, void *base, unsigned int idx, +void regcache_set_val(struct regmap *map, void *base, unsigned int idx, unsigned int val); int regcache_lookup_reg(struct regmap *map, unsigned int reg); int regcache_sync_val(struct regmap *map, unsigned int reg, unsigned int val); |