diff options
Diffstat (limited to 'board/netta2')
| -rw-r--r-- | board/netta2/netta2.c | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/board/netta2/netta2.c b/board/netta2/netta2.c index f4ce7a494..c9b405145 100644 --- a/board/netta2/netta2.c +++ b/board/netta2/netta2.c @@ -36,6 +36,11 @@  #include <watchdog.h>  #endif +int fec8xx_miiphy_read(char *devname, unsigned char addr, +		unsigned char  reg, unsigned short *value); +int fec8xx_miiphy_write(char *devname, unsigned char  addr, +		unsigned char  reg, unsigned short value); +  /****************************************************************/  /* some sane bit macros */ @@ -481,12 +486,13 @@ void reset_phys(void)  	mii_init();  	for (phyno = 0; phyno < 32; ++phyno) { -		miiphy_read(phyno, PHY_PHYIDR1, &v); +		fec8xx_miiphy_read(NULL, phyno, PHY_PHYIDR1, &v);  		if (v == 0xFFFF)  			continue; -		miiphy_write(phyno, PHY_BMCR, PHY_BMCR_POWD); +		fec8xx_miiphy_write(NULL, phyno, PHY_BMCR, PHY_BMCR_POWD);  		udelay(10000); -		miiphy_write(phyno, PHY_BMCR, PHY_BMCR_RESET | PHY_BMCR_AUTON); +		fec8xx_miiphy_write(NULL, phyno, PHY_BMCR, +				PHY_BMCR_RESET | PHY_BMCR_AUTON);  		udelay(10000);  	}  } |