Skip to content
Snippets Groups Projects
Commit 2c0234fa authored by Daniel Mack's avatar Daniel Mack Committed by Ben Warren
Browse files

smc911x: write back the manually set MAC address


If the MAX address is given by the environment, write it back to the
hardware.

Signed-off-by: default avatarDaniel Mack <daniel@caiaq.de>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: default avatarBen Warren <biggerbadderben@gmail.com>
parent 3bc8556f
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,13 @@ static int smx911x_handle_mac_address(bd_t *bd)
unsigned long addrh, addrl;
uchar m[6];
/* if the environment has a valid mac address then use it */
if (!eth_getenv_enetaddr("ethaddr", m)) {
if (eth_getenv_enetaddr("ethaddr", m)) {
/* if the environment has a valid mac address then use it */
addrl = m[0] | (m[1] << 8) | (m[2] << 16) | (m[3] << 24);
addrh = m[4] | (m[5] << 8);
smc911x_set_mac_csr(ADDRL, addrl);
smc911x_set_mac_csr(ADDRH, addrh);
} else {
/* if not, try to get one from the eeprom */
addrh = smc911x_get_mac_csr(ADDRH);
addrl = smc911x_get_mac_csr(ADDRL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment