mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-06 05:06:29 +00:00
regulator: tps6287x: Fix n_voltages
[ Upstream commitc69290557c
] There are 256 possible voltage settings for each range, not 256 possible voltage settings in total. Fixes:15a1cd245d
("regulator: tps6287x: Fix missing .n_voltages setting") Signed-off-by: Vincent Whitchurch <vincent.whitchurch@axis.com Link: https://lore.kernel.org/r/20230829-tps-voltages-v1-1-7ba4f958a194@axis.com Signed-off-by: Mark Brown <broonie@kernel.org Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
a3f87e6f33
commit
2d2b4d003a
@ -119,7 +119,7 @@ static struct regulator_desc tps6287x_reg = {
|
||||
.ramp_mask = TPS6287X_CTRL1_VRAMP,
|
||||
.ramp_delay_table = tps6287x_ramp_table,
|
||||
.n_ramp_values = ARRAY_SIZE(tps6287x_ramp_table),
|
||||
.n_voltages = 256,
|
||||
.n_voltages = 256 * ARRAY_SIZE(tps6287x_voltage_ranges),
|
||||
.linear_ranges = tps6287x_voltage_ranges,
|
||||
.n_linear_ranges = ARRAY_SIZE(tps6287x_voltage_ranges),
|
||||
.linear_range_selectors = tps6287x_voltage_range_sel,
|
||||
|
Loading…
Reference in New Issue
Block a user