diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2022-06-13 14:33:53 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2022-06-19 10:53:26 +0200 |
commit | 7d15e0c9a515494af2e3199741cdac7002928a0e (patch) | |
tree | fa7a944eb15bf28eafd955829a5ad55720eb28db /arch/arm/boot/dts/imx6ul.dtsi | |
parent | ARM: dts: imx6ul: change operating-points to uint32-matrix (diff) | |
download | linux-7d15e0c9a515494af2e3199741cdac7002928a0e.tar.xz linux-7d15e0c9a515494af2e3199741cdac7002928a0e.zip |
ARM: dts: imx6ul: fix keypad compatible
According to binding, the compatible shall only contain imx6ul and imx21
compatibles. Fixes the dt_binding_check warning:
keypad@20b8000: compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,imx6ul-kpp', 'fsl,imx6q-kpp', 'fsl,imx21-kpp'] is too long
Additional items are not allowed ('fsl,imx6q-kpp', 'fsl,imx21-kpp' were
unexpected)
Additional items are not allowed ('fsl,imx21-kpp' was unexpected)
'fsl,imx21-kpp' was expected
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/imx6ul.dtsi')
-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 d429243b1925..b951bdb793d2 100644 --- a/arch/arm/boot/dts/imx6ul.dtsi +++ b/arch/arm/boot/dts/imx6ul.dtsi @@ -544,7 +544,7 @@ }; kpp: keypad@20b8000 { - compatible = "fsl,imx6ul-kpp", "fsl,imx6q-kpp", "fsl,imx21-kpp"; + compatible = "fsl,imx6ul-kpp", "fsl,imx21-kpp"; reg = <0x020b8000 0x4000>; interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; clocks = <&clks IMX6UL_CLK_KPP>; |