summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Wahren <stefan.wahren@i2se.com>2021-08-07 13:06:32 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-10-20 11:45:03 +0200
commit48613e687e281833ae654514e162c71185c843d3 (patch)
tree0682fe0956187bd88bea0955d7a6409fe5a3ac3c
parent6e6e3018d3ced1cc1f7115f29221fc5ba793a2a2 (diff)
downloadlinux-stable-48613e687e281833ae654514e162c71185c843d3.tar.gz
linux-stable-48613e687e281833ae654514e162c71185c843d3.tar.bz2
linux-stable-48613e687e281833ae654514e162c71185c843d3.zip
ARM: dts: bcm2711: fix MDIO #address- and #size-cells
commit 2faff6737a8a684b077264f0aed131526c99eec4 upstream. The values of #address-cells and #size-cells are swapped. Fix this and avoid the following DT schema warnings for mdio@e14: #address-cells:0:0: 1 was expected #size-cells:0:0: 0 was expected Fixes: be8af7a9e3cc ("ARM: dts: bcm2711-rpi-4: Enable GENET support") Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> Link: https://lore.kernel.org/r/1628334401-6577-2-git-send-email-stefan.wahren@i2se.com Signed-off-by: Nicolas Saenz Julienne <nsaenz@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--arch/arm/boot/dts/bcm2711.dtsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/bcm2711.dtsi b/arch/arm/boot/dts/bcm2711.dtsi
index 3d040f6e2a20..398ecd7b9b68 100644
--- a/arch/arm/boot/dts/bcm2711.dtsi
+++ b/arch/arm/boot/dts/bcm2711.dtsi
@@ -514,8 +514,8 @@
compatible = "brcm,genet-mdio-v5";
reg = <0xe14 0x8>;
reg-names = "mdio";
- #address-cells = <0x0>;
- #size-cells = <0x1>;
+ #address-cells = <0x1>;
+ #size-cells = <0x0>;
};
};
};