register eth0 device on the TEW-632BRP board
SVN-Revision: 13566
This commit is contained in:
parent
fb1241cce8
commit
d31fe48ea0
1 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue