1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-03 17:51:19 +02:00

register eth0 device on the TEW-632BRP board

SVN-Revision: 13566
This commit is contained in:
Gabor Juhos 2008-12-09 18:49:01 +00:00
parent fb1241cce8
commit d31fe48ea0

@ -10,10 +10,20 @@
*/
#include <asm/mips_machine.h>
#include <asm/mach-ar71xx/ar71xx.h>
#include <asm/mach-ar71xx/platform.h>
static void __init tew_632brp_setup(void)
{
ar71xx_add_device_mdio(0xfffffffe);
ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
ar71xx_eth0_data.phy_mask = 0x0;
ar71xx_eth0_data.speed = SPEED_100;
ar71xx_eth0_data.duplex = DUPLEX_FULL;
ar71xx_add_device_eth(0);
}
MIPS_MACHINE(AR71XX_MACH_TEW_632BRP, "TRENDnet TEW-632BRP", tew_632brp_setup);