From: Fabio Estevam <fabio.estevam@xxxxxxxxxxxxx> Since commit 7a399e3a2e (fec: Do not assume that PHY reset is active low), we no longer assume that the PHY reset is active low. Now we need to retrieve this information from the device tree instead, so update the binding documentation to make it clearer. Signed-off-by: Fabio Estevam <fabio.estevam@xxxxxxxxxxxxx> --- Documentation/devicetree/bindings/net/fsl-fec.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/net/fsl-fec.txt b/Documentation/devicetree/bindings/net/fsl-fec.txt index 845ff84..68010c3 100644 --- a/Documentation/devicetree/bindings/net/fsl-fec.txt +++ b/Documentation/devicetree/bindings/net/fsl-fec.txt @@ -10,7 +10,8 @@ Required properties: Optional properties: - local-mac-address : 6 bytes, mac address -- phy-reset-gpios : Should specify the gpio for phy reset +- phy-reset-gpios : Should specify the gpio for the phy reset with the flag that +indicates whether it is active low or active high. - phy-reset-duration : Reset duration in milliseconds. Should present only if property "phy-reset-gpios" is available. Missing the property will have the duration be 1 millisecond. Numbers greater than 1000 are @@ -24,7 +25,7 @@ ethernet@83fec000 { reg = <0x83fec000 0x4000>; interrupts = <87>; phy-mode = "mii"; - phy-reset-gpios = <&gpio2 14 0>; /* GPIO2_14 */ + phy-reset-gpios = <&gpio2 14 GPIO_ACTIVE_LOW>; /* GPIO2_14 */ local-mac-address = [00 04 9F 01 1B B9]; phy-supply = <®_fec_supply>; }; -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html