diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2022-06-13 14:33:57 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-06-19 16:53:34 +0800 |
commit | 0c6cf86e1ab433b2d421880fdd9c6e954f404948 (patch) | |
tree | 086b59ffdf5445d90606c7c01a9c3916c11e3b81 | |
parent | 1a884d17ca324531634cce82e9f64c0302bdf7de (diff) | |
download | lwn-0c6cf86e1ab433b2d421880fdd9c6e954f404948.tar.gz lwn-0c6cf86e1ab433b2d421880fdd9c6e954f404948.zip |
ARM: dts: imx6ul: fix qspi node compatible
imx6ul is not compatible to imx6sx, both have different erratas.
Fixes the dt_binding_check warning:
spi@21e0000: compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,imx6ul-qspi', 'fsl,imx6sx-qspi'] is too long
Additional items are not allowed ('fsl,imx6sx-qspi' was unexpected)
'fsl,imx6ul-qspi' is not one of ['fsl,ls1043a-qspi']
'fsl,imx6ul-qspi' is not one of ['fsl,imx8mq-qspi']
'fsl,ls1021a-qspi' was expected
'fsl,imx7d-qspi' 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 1dda3cddcbf2..52ac0d8292d8 100644 --- a/arch/arm/boot/dts/imx6ul.dtsi +++ b/arch/arm/boot/dts/imx6ul.dtsi @@ -1028,7 +1028,7 @@ qspi: spi@21e0000 { #address-cells = <1>; #size-cells = <0>; - compatible = "fsl,imx6ul-qspi", "fsl,imx6sx-qspi"; + compatible = "fsl,imx6ul-qspi"; reg = <0x021e0000 0x4000>, <0x60000000 0x10000000>; reg-names = "QuadSPI", "QuadSPI-memory"; interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>; |