diff options
author | Simon Guinot <simon.guinot@sequanux.org> | 2012-06-05 13:16:00 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-07-07 14:07:33 +0200 |
commit | c59c085731571d8e04344f815fd3a25bb0f69ae1 (patch) | |
tree | 93a0d9c89b359b8ab2451c122488274f3b5bea0d /board/LaCie/common/common.h | |
parent | d92151b9259bc009a4dd8ed1683770520f3b10ac (diff) | |
download | u-boot-imx-c59c085731571d8e04344f815fd3a25bb0f69ae1.zip u-boot-imx-c59c085731571d8e04344f815fd3a25bb0f69ae1.tar.gz u-boot-imx-c59c085731571d8e04344f815fd3a25bb0f69ae1.tar.bz2 |
ARM: don't probe PHY address for LaCie boards
The command miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr) always
returns 8 for the PHY address. It is the reset value for the PHY
Address Register. Obviously, this default value could be incorrect.
Moreover, as the PHY address is well known, there is no need to
auto-detect it.
Now, the PHY address must given as a parameter to the PHY initialization
function. Additionally this patch also fixes some aesthetic issues.
Signed-off-by: Simon Guinot <simon.guinot@sequanux.org>
Diffstat (limited to 'board/LaCie/common/common.h')
-rw-r--r-- | board/LaCie/common/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/LaCie/common/common.h b/board/LaCie/common/common.h index 82a9522..2edd5ab 100644 --- a/board/LaCie/common/common.h +++ b/board/LaCie/common/common.h @@ -11,7 +11,7 @@ #define _LACIE_COMMON_H #if defined(CONFIG_CMD_NET) && defined(CONFIG_RESET_PHY_R) -void mv_phy_88e1116_init(const char *name); +void mv_phy_88e1116_init(const char *name, u16 phyaddr); #endif #if defined(CONFIG_CMD_I2C) && defined(CONFIG_SYS_I2C_EEPROM_ADDR) int lacie_read_mac_address(uchar *mac); |