Skip to content

Commit

Permalink
dt-bindings: net: dsa: b53: Fix full duplex in example
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
shifty91 authored and davem330 committed Oct 4, 2020
1 parent 536a82a commit 3a56268
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Documentation/devicetree/bindings/net/dsa/b53.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0:

fixed-link {
speed = <1000>;
duplex-full;
full-duplex;
};
};

Expand Down Expand Up @@ -129,7 +129,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0:
label = "cable-modem";
fixed-link {
speed = <1000>;
duplex-full;
full-duplex;
};
phy-mode = "rgmii-txid";
};
Expand All @@ -139,7 +139,7 @@ Ethernet switch connected via MDIO to the host, CPU port wired to eth0:
label = "cpu";
fixed-link {
speed = <1000>;
duplex-full;
full-duplex;
};
phy-mode = "rgmii-txid";
ethernet = <&eth0>;
Expand Down

0 comments on commit 3a56268

Please sign in to comment.