Commit 3a56268e authored by Kurt Kanzenbach's avatar Kurt Kanzenbach Committed by David S. Miller

dt-bindings: net: dsa: b53: Fix full duplex in example

There is no such property as duplex-full. It's called full-duplex. Leading to
reduced speed when using the example as base for a real device tree.
Signed-off-by: Kurt Kanzenbach's avatarKurt Kanzenbach <kurt@linutronix.de>
Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 536a82ad
...@@ -95,7 +95,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0: ...@@ -95,7 +95,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0:
fixed-link { fixed-link {
speed = <1000>; speed = <1000>;
duplex-full; full-duplex;
}; };
}; };
...@@ -129,7 +129,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0: ...@@ -129,7 +129,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0:
label = "cable-modem"; label = "cable-modem";
fixed-link { fixed-link {
speed = <1000>; speed = <1000>;
duplex-full; full-duplex;
}; };
phy-mode = "rgmii-txid"; phy-mode = "rgmii-txid";
}; };
...@@ -139,7 +139,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0: ...@@ -139,7 +139,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0:
label = "cpu"; label = "cpu";
fixed-link { fixed-link {
speed = <1000>; speed = <1000>;
duplex-full; full-duplex;
}; };
phy-mode = "rgmii-txid"; phy-mode = "rgmii-txid";
ethernet = <&eth0>; ethernet = <&eth0>;
......
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