Commit 093c3f94 authored by Florian Fainelli's avatar Florian Fainelli

ARM: dts: BCM5301X: Fix MDIO node address/size cells

The MDIO node on BCM5301X had an reversed #address-cells and
 #size-cells properties, correct those, silencing checker warnings:

.../linux/arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dt.yaml: mdio@18003000: #address-cells:0:0: 1 was expected
Reported-by: default avatarSimon Horman <simon.horman@netronome.com>
Fixes: 23f1eca6 ("ARM: dts: BCM5301X: Specify MDIO bus in the DT")
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent e42617b8
......@@ -353,8 +353,8 @@ gmac3: ethernet@27000 {
mdio: mdio@18003000 {
compatible = "brcm,iproc-mdio";
reg = <0x18003000 0x8>;
#size-cells = <1>;
#address-cells = <0>;
#size-cells = <0>;
#address-cells = <1>;
};
mdio-bus-mux@18003000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment