diff options
author | Vladimir Zapolskiy <vz@mleia.com> | 2019-01-29 22:20:40 +0300 |
---|---|---|
committer | Vladimir Zapolskiy <vz@mleia.com> | 2019-02-03 22:36:30 +0300 |
commit | 30fc01bae3cda747e7d9c352b1aa51ca113c8a9d (patch) | |
tree | 5f8e600b2ef0f8455883bef69189d2c14bf7f7c2 | |
parent | 7a0790a4121cbcd111cc537cdc801c46ccb789ee (diff) | |
download | linux-30fc01bae3cda747e7d9c352b1aa51ca113c8a9d.tar.xz |
ARM: dts: lpc32xx: fix ARM PrimeCell LCD controller clocks property
The originally added ARM PrimeCell PL111 clocks property misses
the required "clcdclk" clock, which is the same as a clock to enable
the LCD controller on NXP LPC3230 and NXP LPC3250 SoCs.
Fixes: 93898eb775e5 ("arm: dts: lpc32xx: add clock properties to device nodes")
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
-rw-r--r-- | arch/arm/boot/dts/lpc32xx.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/lpc32xx.dtsi b/arch/arm/boot/dts/lpc32xx.dtsi index cfd422e7f774..9ad3df11db0d 100644 --- a/arch/arm/boot/dts/lpc32xx.dtsi +++ b/arch/arm/boot/dts/lpc32xx.dtsi @@ -142,8 +142,8 @@ compatible = "arm,pl111", "arm,primecell"; reg = <0x31040000 0x1000>; interrupts = <14 IRQ_TYPE_LEVEL_HIGH>; - clocks = <&clk LPC32XX_CLK_LCD>; - clock-names = "apb_pclk"; + clocks = <&clk LPC32XX_CLK_LCD>, <&clk LPC32XX_CLK_LCD>; + clock-names = "clcdclk", "apb_pclk"; status = "disabled"; }; |