env: Move env_get_ulong() to env.h
authorSimon Glass <sjg@chromium.org>
Thu, 1 Aug 2019 15:46:48 +0000 (09:46 -0600)
committerTom Rini <trini@konsulko.com>
Sun, 11 Aug 2019 20:43:41 +0000 (16:43 -0400)
Move env_get_ulong() over to the new header file.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
board/BuR/brxre1/board.c
board/gdsys/p1022/controlcenterd-id.c
board/synopsys/hsdk/env-lib.c
board/ti/ks2_evm/board_k2g.c
board/toradex/colibri_imx6/colibri_imx6.c
include/common.h
include/env.h
lib/fdtdec.c
net/bootp.c

index 0d1c6c47205fb419970f8e983b42d6a781193508..873208c668d7aef6c9bd3feeb37a51d2022db42d 100644 (file)
@@ -9,6 +9,7 @@
  *
  */
 #include <common.h>
+#include <env.h>
 #include <errno.h>
 #include <spl.h>
 #include <asm/arch/cpu.h>
index 6ac956cacac849dd2d3874f2122173cba4a06f17..43f5404231f02e207aaedd29500b7de97a7e1df8 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <common.h>
 #include <dm.h>
+#include <env.h>
 #include <malloc.h>
 #include <fs.h>
 #include <i2c.h>
index 66e4581faeef540dd28eb04762f3b5b2b95a0e4b..f443c21e6d99f498e495c7fa9a76663516504c7c 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 #include "env-lib.h"
+#include <env.h>
 
 #define MAX_CMD_LEN    25
 
index 6d0fc21c67acc29f05b411fd608633a327ed0de4..4ff9a44b3712b28308f7f1439ebbf766bb3a3ad4 100644 (file)
@@ -6,6 +6,7 @@
  *     Texas Instruments Incorporated, <www.ti.com>
  */
 #include <common.h>
+#include <env.h>
 #include <asm/arch/clock.h>
 #include <asm/ti-common/keystone_net.h>
 #include <asm/arch/psc_defs.h>
index 6417ba49804aa15741bed200ffdeb715c560ce4d..f657db87d8f117be0c93e9e30bd97c20efe6581a 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <common.h>
 #include <dm.h>
+#include <env.h>
 
 #include <asm/arch/clock.h>
 #include <asm/arch/crm_regs.h>
index 283cb23fd1134ff4705f55077d5563e240103c46..48f443e851cc6436a2008e41a3fc3404f6d6880a 100644 (file)
@@ -157,19 +157,6 @@ int do_ext2load(cmd_tbl_t *, int, int, char * const []);
  */
 char *env_get(const char *varname);
 
-/**
- * env_get_ulong() - Return an environment variable as an integer value
- *
- * Most U-Boot environment variables store hex values. For those which store
- * (e.g.) base-10 integers, this function can be used to read the value.
- *
- * @name:      Variable to look up
- * @base:      Base to use (e.g. 10 for base 10, 2 for binary)
- * @default_val: Default value to return if no value is found
- * @return the value found, or @default_val if none
- */
-ulong env_get_ulong(const char *name, int base, ulong default_val);
-
 /**
  * env_get_hex() - Return an environment variable as a hex value
  *
index 8898b78b8e4788474ade90031ee3842fed80a2dd..9124718f2d648ed425b0de253bcad4f68fedd686 100644 (file)
@@ -63,6 +63,19 @@ int env_match(unsigned char *name, int index);
  */
 int env_get_f(const char *name, char *buf, unsigned int len);
 
+/**
+ * env_get_ulong() - Return an environment variable as an integer value
+ *
+ * Most U-Boot environment variables store hex values. For those which store
+ * (e.g.) base-10 integers, this function can be used to read the value.
+ *
+ * @name:      Variable to look up
+ * @base:      Base to use (e.g. 10 for base 10, 2 for binary)
+ * @default_val: Default value to return if no value is found
+ * @return the value found, or @default_val if none
+ */
+ulong env_get_ulong(const char *name, int base, ulong default_val);
+
 /**
  * env_set_ulong() - set an environment variable to an integer
  *
index 464de5b3b526fa2fda5fb758874b31a922f6a03f..ef5e54875c948629c7d8b5ab8a93bb3015c448ec 100644 (file)
@@ -8,6 +8,7 @@
 #include <boot_fit.h>
 #include <dm.h>
 #include <dm/of_extra.h>
+#include <env.h>
 #include <errno.h>
 #include <fdtdec.h>
 #include <fdt_support.h>
index 9a2b512e4a72b6aab102a8f71c9067c510d045a3..505489140e8a099a71f409bf9e8b8d443ac8ba2c 100644 (file)
@@ -10,6 +10,7 @@
 
 #include <common.h>
 #include <command.h>
+#include <env.h>
 #include <efi_loader.h>
 #include <net.h>
 #include <net/tftp.h>