diff options
| author | Marian Balakowicz <[email protected]> | 2005-10-28 22:30:33 +0200 |
|---|---|---|
| committer | Marian Balakowicz <[email protected]> | 2005-10-28 22:30:33 +0200 |
| commit | 63ff004c4fcad9f690bf44dbd15d568bb47aac2d (patch) | |
| tree | 7b64074a85da8118b6c862f14de1171b36ade0f7 /board/esd/common | |
| parent | fe93483a0ab9dcbf7794ffbf0b029ba138380e81 (diff) | |
Add support for multiple PHYs.
Diffstat (limited to 'board/esd/common')
| -rw-r--r-- | board/esd/common/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/esd/common/misc.c b/board/esd/common/misc.c index cba8c92f2e5..48b4b7c7b96 100644 --- a/board/esd/common/misc.c +++ b/board/esd/common/misc.c @@ -33,8 +33,8 @@ void lxt971_no_sleep(void) { unsigned short reg; - miiphy_read(CONFIG_PHY_ADDR, 0x10, ®); + miiphy_read("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x10, ®); reg &= ~0x0040; /* disable sleep mode */ - miiphy_write(CONFIG_PHY_ADDR, 0x10, reg); + miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, 0x10, reg); } #endif /* CONFIG_LXT971_NO_SLEEP */ |
