mirror of
https://github.com/torvalds/linux.git
synced 2026-06-03 20:14:06 +02:00
regmap: Use helper function for register offset
As a helper function exists for calculating register offsets lets use that rather than open coding with the reg_stride. Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
9ae27a8d1f
commit
45abcc5567
|
|
@ -1993,7 +1993,7 @@ int regmap_bulk_write(struct regmap *map, unsigned int reg, const void *val,
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
ret = regmap_write(map, reg + (i * map->reg_stride),
|
||||
ret = regmap_write(map, reg + regmap_get_offset(map, i),
|
||||
ival);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user