diff options
author | Tom Rini <trini@konsulko.com> | 2021-04-11 07:40:25 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-11 07:40:25 -0400 |
commit | c6a4ee2aaee541c12d290dd25561e771396817cc (patch) | |
tree | dcc1c02b7c2dd1b6834c29317e16eab747558da0 /drivers/pwm/rk_pwm.c | |
parent | 59e84da0b88e4465f15d196bba59f22c906fa50d (diff) | |
parent | 38e18d6392fca9f6809cb3079af3069efc3d181f (diff) |
Merge tag 'video-2021-07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-video
- rk3399 eDP support
- pwm backlight without a known period_ns
- add Chrome OS EC PWM driver
- Kconfig SIMPLE_PANEL DM_GPIO dependency
- remove mb862xx driver remnants
- fix KiB format in reserve_video() debug trace
- fix tegra124 sor CSTM LVDS_EN_ENABLE/DISABLE config
- fix line padding calculation for 16 and 24 BPP bitmaps
Diffstat (limited to 'drivers/pwm/rk_pwm.c')
-rw-r--r-- | drivers/pwm/rk_pwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/rk_pwm.c b/drivers/pwm/rk_pwm.c index 9cf09803457..071eb04fda7 100644 --- a/drivers/pwm/rk_pwm.c +++ b/drivers/pwm/rk_pwm.c @@ -147,7 +147,7 @@ static int rk_pwm_probe(struct udevice *dev) priv->data = (struct rockchip_pwm_data *)dev_get_driver_data(dev); if (priv->data->supports_polarity) - priv->conf_polarity = PWM_DUTY_POSTIVE | PWM_INACTIVE_POSTIVE; + priv->conf_polarity = PWM_DUTY_POSTIVE | PWM_INACTIVE_NEGATIVE; return 0; } |