X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=board%2Fsilica%2Fpengwyn%2Fboard.c;h=dc10b76160afc4e45af0ef0197921ff4d866f2be;hb=9fb625ce05539fe6876a59ce1dcadb76b33c6f6e;hp=ee88b6f39908641b6c403e7c0cdbcb82c7e0e897;hpb=5495dae7aa9d5cd161e07174d38acac86515c58a;p=oweals%2Fu-boot.git diff --git a/board/silica/pengwyn/board.c b/board/silica/pengwyn/board.c index ee88b6f399..dc10b76160 100644 --- a/board/silica/pengwyn/board.c +++ b/board/silica/pengwyn/board.c @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * board.c * * Copyright (C) 2013 Lothar Felten - * - * SPDX-License-Identifier: GPL-2.0+ */ #include +#include +#include #include #include #include @@ -141,12 +142,6 @@ static struct cpsw_slave_data cpsw_slaves[] = { { .slave_reg_ofs = 0x208, .sliver_reg_ofs = 0xd80, - .phy_addr = 0, - .phy_if = PHY_INTERFACE_MODE_MII, - }, - { - .slave_reg_ofs = 0x308, - .sliver_reg_ofs = 0xdc0, .phy_addr = 1, .phy_if = PHY_INTERFACE_MODE_MII, }, @@ -177,7 +172,7 @@ int board_eth_init(bd_t *bis) uint8_t mac_addr[6]; uint32_t mac_hi, mac_lo; - if (!eth_getenv_enetaddr("ethaddr", mac_addr)) { + if (!eth_env_get_enetaddr("ethaddr", mac_addr)) { printf(" not set. Reading from E-fuse\n"); /* try reading mac address from efuse */ mac_lo = readl(&cdev->macid0l); @@ -189,8 +184,8 @@ int board_eth_init(bd_t *bis) mac_addr[4] = mac_lo & 0xFF; mac_addr[5] = (mac_lo & 0xFF00) >> 8; - if (is_valid_ether_addr(mac_addr)) - eth_setenv_enetaddr("ethaddr", mac_addr); + if (is_valid_ethaddr(mac_addr)) + eth_env_set_enetaddr("ethaddr", mac_addr); else return n; }