Files
u-boot/arch/arm/include/asm
eric.gao@rock-chips.com e3ef41df48 rockchip: pwm: fix the register layout for the PWM controller
According to rk3288 spec, the pwm register order is:
    PWM_PWM0_CNT,
    PWM_PWM0_PERIOD_HPR,
    PWM_PWM0_DUTY_LPR,
    PWM_PWM0_CTRL
but the source code's order is:
  struct rk3288_pwm {
    u32 cnt;
    u32 duty_lpr;
    u32 period_hpr;
    u32 ctrl;
  };

So, correct it here. It is the same as RK3399.

Signed-off-by: Eric Gao <eric.gao@rock-chips.com>
Edited the commit message:
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
2017-07-11 12:13:47 +02:00
..
2016-10-24 10:57:16 +02:00
2016-07-15 15:54:57 +02:00
2017-05-12 08:37:06 -04:00
2016-12-15 11:57:35 -08:00
2016-12-15 11:57:44 -08:00
2017-06-09 11:23:59 -04:00
2017-05-11 22:03:39 -04:00