diff options
author | Dmitry Baryshkov <dbaryshkov@gmail.com> | 2010-06-09 21:16:20 +0000 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-06-15 14:47:04 -0600 |
commit | 2b07be2493681220cac4d185494a4edb0b8efd1e (patch) | |
tree | bb97f1dd36a02df700b94779914cfb92017242ce /arch/powerpc | |
parent | f487537c2b6b23332bbea7ecb1fe793b6c74d5b2 (diff) | |
download | linux-3.10-2b07be2493681220cac4d185494a4edb0b8efd1e.tar.gz linux-3.10-2b07be2493681220cac4d185494a4edb0b8efd1e.tar.bz2 linux-3.10-2b07be2493681220cac4d185494a4edb0b8efd1e.zip |
powerpc/5200: fix lite5200 ethernet phy address
According to my schematics, on Lite5200 board ethernet phy uses address
0 (all ADDR lines are pulled down). With this change I can talk to
onboard phy (LXT971) and correctly use autonegotiation.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/boot/dts/lite5200.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/boot/dts/lite5200.dts b/arch/powerpc/boot/dts/lite5200.dts index d1502ef85ed..179a1785d64 100644 --- a/arch/powerpc/boot/dts/lite5200.dts +++ b/arch/powerpc/boot/dts/lite5200.dts @@ -234,8 +234,8 @@ reg = <0x3000 0x400>; // fec range, since we need to setup fec interrupts interrupts = <2 5 0>; // these are for "mii command finished", not link changes & co. - phy0: ethernet-phy@1 { - reg = <1>; + phy0: ethernet-phy@0 { + reg = <0>; }; }; |