diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2019-08-23 09:02:40 +0200 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2019-08-29 16:13:34 -0700 |
commit | 59d370105d9fe91c30da14a0cbddec64b7f92c97 (patch) | |
tree | a1012152f6d16d5086ce05a478107612692c500b | |
parent | 03c76b81abb7bcfc63d799a236b521984deca799 (diff) | |
download | linux-stable-59d370105d9fe91c30da14a0cbddec64b7f92c97.tar.gz linux-stable-59d370105d9fe91c30da14a0cbddec64b7f92c97.tar.bz2 linux-stable-59d370105d9fe91c30da14a0cbddec64b7f92c97.zip |
arm64: dts: meson-gx: fix mhu compatible
This fixes the following DT schemas check errors:
meson-gxbb-nanopi-k2.dt.yaml: mailbox@404: compatible:0: 'amlogic,meson-gx-mhu' is not one of ['amlogic,meson-gxbb-mhu']
meson-gxl-s805x-libretech-ac.dt.yaml: mailbox@404: compatible:0: 'amlogic,meson-gx-mhu' is not one of ['amlogic,meson-gxbb-mhu']
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
-rw-r--r-- | arch/arm64/boot/dts/amlogic/meson-gx.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/amlogic/meson-gx.dtsi b/arch/arm64/boot/dts/amlogic/meson-gx.dtsi index b3fe3268af3e..74a2cdff0563 100644 --- a/arch/arm64/boot/dts/amlogic/meson-gx.dtsi +++ b/arch/arm64/boot/dts/amlogic/meson-gx.dtsi @@ -490,7 +490,7 @@ }; mailbox: mailbox@404 { - compatible = "amlogic,meson-gx-mhu", "amlogic,meson-gxbb-mhu"; + compatible = "amlogic,meson-gxbb-mhu"; reg = <0 0x404 0 0x4c>; interrupts = <GIC_SPI 208 IRQ_TYPE_EDGE_RISING>, <GIC_SPI 209 IRQ_TYPE_EDGE_RISING>, |