summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/pwm/tegra_pwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/tegra_pwm.c b/drivers/pwm/tegra_pwm.c
index 4b57751f73f..4bbfeba8d98 100644
--- a/drivers/pwm/tegra_pwm.c
+++ b/drivers/pwm/tegra_pwm.c
@@ -40,7 +40,7 @@ static int tegra_pwm_set_config(struct udevice *dev, uint channel,
return -EINVAL;
debug("%s: Configure '%s' channel %u\n", __func__, dev->name, channel);
- pulse_width = duty_ns * 255 / period_ns;
+ pulse_width = duty_ns * 256 / period_ns;
if (priv->polarity & BIT(channel))
pulse_width = 256 - pulse_width;