Skip to content

Commit

Permalink
ARM: dts: at91: VInCo: fix phy reset gpio flag
Browse files Browse the repository at this point in the history
Fix gpio active flag for the phy reset-gpios property. The line is
active low instead of active high.
Actually, this flags was never used by the macb driver.

Reported-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Cc: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
  • Loading branch information
Nicolas Ferre committed Apr 27, 2016
1 parent 5175500 commit 88677db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/at91-vinco.dts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@

ethernet-phy@1 {
reg = <0x1>;
reset-gpios = <&pioE 8 GPIO_ACTIVE_HIGH>;
reset-gpios = <&pioE 8 GPIO_ACTIVE_LOW>;
interrupt-parent = <&pioB>;
interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
};
Expand Down Expand Up @@ -162,7 +162,7 @@
reg = <0x1>;
interrupt-parent = <&pioB>;
interrupts = <31 IRQ_TYPE_EDGE_FALLING>;
reset-gpios = <&pioE 6 GPIO_ACTIVE_HIGH>;
reset-gpios = <&pioE 6 GPIO_ACTIVE_LOW>;
};
};

Expand Down

0 comments on commit 88677db

Please sign in to comment.