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:
Родитель
9ae27a8d1f
Коммит
45abcc5567
|
@ -1993,7 +1993,7 @@ out:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = regmap_write(map, reg + (i * map->reg_stride),
|
ret = regmap_write(map, reg + regmap_get_offset(map, i),
|
||||||
ival);
|
ival);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче