1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 12:27:38 +03:00

ar71xx: modify phy mask of the WP543 board

This fixes ethernet on newer boards. Based on a patch from #9702.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29328 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2011-11-24 20:09:43 +00:00
parent c6f1dc90c0
commit e6638f1bd3

View File

@ -77,11 +77,11 @@ static void __init wp543_setup(void)
{ {
ar71xx_add_device_m25p80(NULL); ar71xx_add_device_m25p80(NULL);
ar71xx_add_device_mdio(0, 0xfffffff7); ar71xx_add_device_mdio(0, 0xfffffff0);
ar71xx_init_mac(ar71xx_eth0_data.mac_addr, ar71xx_mac_base, 0); ar71xx_init_mac(ar71xx_eth0_data.mac_addr, ar71xx_mac_base, 0);
ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII; ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
ar71xx_eth0_data.phy_mask = 0x08; ar71xx_eth0_data.phy_mask = 0x0f;
ar71xx_eth0_data.reset_bit = RESET_MODULE_GE0_MAC | ar71xx_eth0_data.reset_bit = RESET_MODULE_GE0_MAC |
RESET_MODULE_GE0_PHY; RESET_MODULE_GE0_PHY;
ar71xx_add_device_eth(0); ar71xx_add_device_eth(0);