mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
pwm: sunxi: fix off-by-one that prevented PWM to use prescaler bypass
Fix off-by-one that prevented PWM driver to use prescaler bypass. Without this change prescaler is always enabled. Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com> Acked-by: Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by: Jagan Teki <jagan@openedev.com>
This commit is contained in:
parent
1ed3c0954b
commit
a877d4b1ae
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ static int sunxi_pwm_set_config(struct udevice *dev, uint channel,
|
|||
|
||||
debug("%s: period_ns=%u, duty_ns=%u\n", __func__, period_ns, duty_ns);
|
||||
|
||||
for (prescaler = 0; prescaler < SUNXI_PWM_CTRL_PRESCALE0_MASK;
|
||||
for (prescaler = 0; prescaler <= SUNXI_PWM_CTRL_PRESCALE0_MASK;
|
||||
prescaler++) {
|
||||
if (!prescaler_table[prescaler])
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue