linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v2 1/1] ARM: dts: imx6sx: correct i.MX6sx sdb board enet phy address
@ 2015-01-20  8:48 Fugang Duan
  2015-01-20 11:15 ` Shawn Guo
  2015-01-25  5:55 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: Fugang Duan @ 2015-01-20  8:48 UTC (permalink / raw)
  To: linux-arm-kernel

The commit (3d125f9c91c5) cause i.MX6SX sdb enet cannot work. The cause is
the commit add mdio node with un-correct phy address.

The patch just correct i.MX6sx sdb board enet phy address.

V2:
* As Shawn's suggestion that unit-address should match 'reg' property, so
  update ethernet-phy unit-address.

Acked-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Fugang Duan <B38611@freescale.com>
---
 arch/arm/boot/dts/imx6sx-sdb.dts |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/boot/dts/imx6sx-sdb.dts b/arch/arm/boot/dts/imx6sx-sdb.dts
index 8c1febd..c108bb4 100644
--- a/arch/arm/boot/dts/imx6sx-sdb.dts
+++ b/arch/arm/boot/dts/imx6sx-sdb.dts
@@ -166,12 +166,12 @@
 		#address-cells = <1>;
 		#size-cells = <0>;
 
-		ethphy1: ethernet-phy at 0 {
-			reg = <0>;
+		ethphy1: ethernet-phy at 1 {
+			reg = <1>;
 		};
 
-		ethphy2: ethernet-phy at 1 {
-			reg = <1>;
+		ethphy2: ethernet-phy at 2 {
+			reg = <2>;
 		};
 	};
 };
-- 
1.7.8

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH net-next v2 1/1] ARM: dts: imx6sx: correct i.MX6sx sdb board enet phy address
  2015-01-20  8:48 [PATCH net-next v2 1/1] ARM: dts: imx6sx: correct i.MX6sx sdb board enet phy address Fugang Duan
@ 2015-01-20 11:15 ` Shawn Guo
  2015-01-25  5:55 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2015-01-20 11:15 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jan 20, 2015 at 04:48:17PM +0800, Fugang Duan wrote:
> The commit (3d125f9c91c5) cause i.MX6SX sdb enet cannot work. The cause is
> the commit add mdio node with un-correct phy address.
> 
> The patch just correct i.MX6sx sdb board enet phy address.
> 
> V2:
> * As Shawn's suggestion that unit-address should match 'reg' property, so
>   update ethernet-phy unit-address.
> 
> Acked-by: Stefan Agner <stefan@agner.ch>
> Signed-off-by: Fugang Duan <B38611@freescale.com>

Acked-by: Shawn Guo <shawn.guo@linaro.org>

David,

I assume that you will send this fix for 3.19, since commit 3d125f9c91c5
was sent via your tree.  Otherwise, let me know and I will manage to
send it via arm-soc tree.

Shawn

> ---
>  arch/arm/boot/dts/imx6sx-sdb.dts |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/imx6sx-sdb.dts b/arch/arm/boot/dts/imx6sx-sdb.dts
> index 8c1febd..c108bb4 100644
> --- a/arch/arm/boot/dts/imx6sx-sdb.dts
> +++ b/arch/arm/boot/dts/imx6sx-sdb.dts
> @@ -166,12 +166,12 @@
>  		#address-cells = <1>;
>  		#size-cells = <0>;
>  
> -		ethphy1: ethernet-phy at 0 {
> -			reg = <0>;
> +		ethphy1: ethernet-phy at 1 {
> +			reg = <1>;
>  		};
>  
> -		ethphy2: ethernet-phy at 1 {
> -			reg = <1>;
> +		ethphy2: ethernet-phy at 2 {
> +			reg = <2>;
>  		};
>  	};
>  };
> -- 
> 1.7.8
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH net-next v2 1/1] ARM: dts: imx6sx: correct i.MX6sx sdb board enet phy address
  2015-01-20  8:48 [PATCH net-next v2 1/1] ARM: dts: imx6sx: correct i.MX6sx sdb board enet phy address Fugang Duan
  2015-01-20 11:15 ` Shawn Guo
@ 2015-01-25  5:55 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2015-01-25  5:55 UTC (permalink / raw)
  To: linux-arm-kernel

From: Fugang Duan <b38611@freescale.com>
Date: Tue, 20 Jan 2015 16:48:17 +0800

> The commit (3d125f9c91c5) cause i.MX6SX sdb enet cannot work. The cause is
> the commit add mdio node with un-correct phy address.
> 
> The patch just correct i.MX6sx sdb board enet phy address.
> 
> V2:
> * As Shawn's suggestion that unit-address should match 'reg' property, so
>   update ethernet-phy unit-address.
> 
> Acked-by: Stefan Agner <stefan@agner.ch>
> Signed-off-by: Fugang Duan <B38611@freescale.com>

Applied.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-01-25  5:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-20  8:48 [PATCH net-next v2 1/1] ARM: dts: imx6sx: correct i.MX6sx sdb board enet phy address Fugang Duan
2015-01-20 11:15 ` Shawn Guo
2015-01-25  5:55 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).