]> git.sur5r.net Git - u-boot/blobdiff - common/bootretry.c
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot] / common / bootretry.c
index 2d82798cd04bc6ba004d2382ceaab79637c79a85..072055b0105767873ba8baf636837b80a34ffb14 100644 (file)
@@ -1,8 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * (C) Copyright 2000
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
@@ -23,7 +22,7 @@ static int      retry_time = -1; /* -1 so can call readline before main_loop */
  */
 void bootretry_init_cmd_timeout(void)
 {
-       char *s = getenv("bootretry");
+       char *s = env_get("bootretry");
 
        if (s != NULL)
                retry_time = (int)simple_strtol(s, NULL, 10);