Commit 30fc01ba authored by Vladimir Zapolskiy's avatar Vladimir Zapolskiy

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: 93898eb7 ("arm: dts: lpc32xx: add clock properties to device nodes")
Signed-off-by: default avatarVladimir Zapolskiy <vz@mleia.com>
parent 7a0790a4
......@@ -142,8 +142,8 @@ clcd: clcd@31040000 {
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";
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment