]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/ti/am335x/board.c
env: Rename getenv/_f() to env_get()
[people/ms/u-boot.git] / board / ti / am335x / board.c
index 7bdbc89d5e67e358d3ccb010cb68cdfbfb934365..ab835856e5fee3352f723d74e4651e539d2f40e7 100644 (file)
@@ -745,7 +745,7 @@ int board_late_init(void)
        mac_addr[4] = mac_lo & 0xFF;
        mac_addr[5] = (mac_lo & 0xFF00) >> 8;
 
-       if (!getenv("ethaddr")) {
+       if (!env_get("ethaddr")) {
                printf("<ethaddr> not set. Validating first E-fuse MAC\n");
 
                if (is_valid_ethaddr(mac_addr))
@@ -761,7 +761,7 @@ int board_late_init(void)
        mac_addr[4] = mac_lo & 0xFF;
        mac_addr[5] = (mac_lo & 0xFF00) >> 8;
 
-       if (!getenv("eth1addr")) {
+       if (!env_get("eth1addr")) {
                if (is_valid_ethaddr(mac_addr))
                        eth_env_set_enetaddr("eth1addr", mac_addr);
        }