diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-09-03 15:23:26 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-09-03 15:23:26 +0000 |
commit | dd3eea99fa76255399ce0eca2a77ee903d2d5caa (patch) | |
tree | 4e797213338fad6ffe56e53fbd787bc040bdca90 /target | |
parent | a6fdbbabdd591c4118323a2b4c3becdb7888f89a (diff) | |
download | upstream-dd3eea99fa76255399ce0eca2a77ee903d2d5caa.tar.gz upstream-dd3eea99fa76255399ce0eca2a77ee903d2d5caa.tar.bz2 upstream-dd3eea99fa76255399ce0eca2a77ee903d2d5caa.zip |
fix phy id on the WP543 board
SVN-Revision: 12517
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c index 21d9eb0b57..d68654e5df 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wp543.c @@ -48,8 +48,8 @@ static void __init wp543_setup(void) { ar71xx_add_device_spi(NULL, wp543_spi_info, ARRAY_SIZE(wp543_spi_info)); - ar71xx_add_device_mdio(0xfffffffe); - ar71xx_add_device_eth(0, PHY_INTERFACE_MODE_MII, 0x00000001); + ar71xx_add_device_mdio(0xfffffff7); + ar71xx_add_device_eth(0, PHY_INTERFACE_MODE_MII, 0x00000008); ar71xx_pci_init(ARRAY_SIZE(wp543_pci_irqs), wp543_pci_irqs); } |