diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-15 22:25:35 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-15 22:25:35 +0000 |
commit | 2b1b2e492fe3c6e5e049b65fe623a6b297ed496c (patch) | |
tree | 1988acb2bffc9d7372e50ae6a71c745158bfe01f /target/linux/ar71xx/files | |
parent | 56a02cffed005fa4cd123cf18104d6229fcdebde (diff) | |
download | upstream-2b1b2e492fe3c6e5e049b65fe623a6b297ed496c.tar.gz upstream-2b1b2e492fe3c6e5e049b65fe623a6b297ed496c.tar.bz2 upstream-2b1b2e492fe3c6e5e049b65fe623a6b297ed496c.zip |
ar71xx: fix GMAC1 interface speed on the DB120 board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29555 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-db120.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-db120.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-db120.c index b997f3cb5a..1d59f74786 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-db120.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-db120.c @@ -143,7 +143,7 @@ static void __init db120_setup(void) /* GMAC1 is connected to the internal switch */ ar71xx_init_mac(ar71xx_eth1_data.mac_addr, art + DB120_MAC1_OFFSET, 0); ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII; - ar71xx_eth1_data.speed = SPEED_100; + ar71xx_eth1_data.speed = SPEED_1000; ar71xx_eth1_data.duplex = DUPLEX_FULL; ar71xx_add_device_eth(1); |