]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/keymile/common/ivm.c
env: Rename setenv() to env_set()
[people/ms/u-boot.git] / board / keymile / common / ivm.c
index e9e518cf7257165d0e647d340ff6a865639d2ee1..dc40a83fc08c247915196a344f1895b0a9739ae1 100644 (file)
@@ -310,11 +310,11 @@ static int ivm_populate_env(unsigned char *buf, int len)
 #ifndef CONFIG_KMTEGR1
        /* if an offset is defined, add it */
        process_mac(valbuf, page2, CONFIG_PIGGY_MAC_ADRESS_OFFSET, true);
-       setenv((char *)"ethaddr", (char *)valbuf);
+       env_set((char *)"ethaddr", (char *)valbuf);
 #ifdef CONFIG_KMVECT1
 /* KMVECT1 has two ethernet interfaces */
        process_mac(valbuf, page2, 1, true);
-       setenv((char *)"eth1addr", (char *)valbuf);
+       env_set((char *)"eth1addr", (char *)valbuf);
 #endif
 #else
 /* KMTEGR1 has a special setup. eth0 has no connection to the outside and
@@ -322,9 +322,9 @@ static int ivm_populate_env(unsigned char *buf, int len)
  * gets the official MAC address from the IVM
  */
        process_mac(valbuf, page2, CONFIG_PIGGY_MAC_ADRESS_OFFSET, false);
-       setenv((char *)"ethaddr", (char *)valbuf);
+       env_set((char *)"ethaddr", (char *)valbuf);
        process_mac(valbuf, page2, CONFIG_PIGGY_MAC_ADRESS_OFFSET, true);
-       setenv((char *)"eth1addr", (char *)valbuf);
+       env_set((char *)"eth1addr", (char *)valbuf);
 #endif
 
        return 0;