diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2022-06-13 14:33:56 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-06-19 16:53:31 +0800 |
commit | 1a884d17ca324531634cce82e9f64c0302bdf7de (patch) | |
tree | 2aa4b21d2ebfe952c2fab53a9b6b6c7c9cbf90c6 | |
parent | e0aca931a2c7c29c88ebf37f9c3cd045e083483d (diff) | |
download | lwn-1a884d17ca324531634cce82e9f64c0302bdf7de.tar.gz lwn-1a884d17ca324531634cce82e9f64c0302bdf7de.zip |
ARM: dts: imx6ul: fix lcdif node compatible
In yaml binding "fsl,imx6ul-lcdif" is listed as compatible to imx6sx-lcdif,
but not imx28-lcdif. Change the list accordingly. Fixes the
dt_binding_check warning:
lcdif@21c8000: compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,imx6ul-lcdif', 'fsl,imx28-lcdif'] is too long
Additional items are not allowed ('fsl,imx28-lcdif' was unexpected)
'fsl,imx6ul-lcdif' is not one of ['fsl,imx23-lcdif', 'fsl,imx28-lcdif',
'fsl,imx6sx-lcdif']
'fsl,imx6sx-lcdif' was expected
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
-rw-r--r-- | arch/arm/boot/dts/imx6ul.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi index c67e28232d97..1dda3cddcbf2 100644 --- a/arch/arm/boot/dts/imx6ul.dtsi +++ b/arch/arm/boot/dts/imx6ul.dtsi @@ -1007,7 +1007,7 @@ }; lcdif: lcdif@21c8000 { - compatible = "fsl,imx6ul-lcdif", "fsl,imx28-lcdif"; + compatible = "fsl,imx6ul-lcdif", "fsl,imx6sx-lcdif"; reg = <0x021c8000 0x4000>; interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>; clocks = <&clks IMX6UL_CLK_LCDIF_PIX>, |