diff options
author | Matteo Croce <matteo@openwrt.org> | 2011-05-17 11:15:24 +0000 |
---|---|---|
committer | Matteo Croce <matteo@openwrt.org> | 2011-05-17 11:15:24 +0000 |
commit | a1ea2a188d39ec83cb82acc87a6632fe64dcb17a (patch) | |
tree | 6ec10dc0b35ad71dd935e4eebcb39c9d15690e4f /target | |
parent | 716127c2ac63d85046280acc1dbfc57c9ec665c8 (diff) | |
download | upstream-a1ea2a188d39ec83cb82acc87a6632fe64dcb17a.tar.gz upstream-a1ea2a188d39ec83cb82acc87a6632fe64dcb17a.tar.bz2 upstream-a1ea2a188d39ec83cb82acc87a6632fe64dcb17a.zip |
ar71xx: don't probe the LAN PHY
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26924 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c index bc682cbf9d..56af69dcc2 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c @@ -236,7 +236,6 @@ MIPS_MACHINE(AR71XX_MACH_UBNT_LSSR71, "UBNT-LS-SR71", "Ubiquiti LS-SR71", ubnt_lssr71_setup); #define UBNT_M_WAN_PHYMASK BIT(4) -#define UBNT_M_LAN_PHYMASK BIT(0) static void __init ubnt_m_setup(void) { @@ -246,7 +245,7 @@ static void __init ubnt_m_setup(void) ar71xx_add_device_m25p80(NULL); - ar71xx_add_device_mdio(~(UBNT_M_WAN_PHYMASK | UBNT_M_LAN_PHYMASK)); + ar71xx_add_device_mdio(~UBNT_M_WAN_PHYMASK); ar71xx_init_mac(ar71xx_eth0_data.mac_addr, mac1, 0); ar71xx_init_mac(ar71xx_eth1_data.mac_addr, mac2, 0); |