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

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
arch/x86/lib/zimage.c
cmd/elf.c
common/image-fdt.c
include/common.h
include/env.h

index 230b38e9384f41782a11d7c47fa305d66b3f8068..6a6258a5057a3b16700aac4a3c93c25e720fd715 100644 (file)
@@ -13,6 +13,7 @@
  */
 
 #include <common.h>
+#include <env.h>
 #include <malloc.h>
 #include <asm/acpi_table.h>
 #include <asm/io.h>
index d883be41931deea96e5a2be3fac3fb7ce4614ae6..5e5cf47cf894a7c55811ec5861732473549271bb 100644 (file)
--- a/cmd/elf.c
+++ b/cmd/elf.c
@@ -16,6 +16,7 @@
 #include <common.h>
 #include <command.h>
 #include <elf.h>
+#include <env.h>
 #include <environment.h>
 #include <net.h>
 #include <vxworks.h>
index e70da3dcb33aaeb2bf72c3950b23949647751e18..4247dcee0c4f71d6626ffa31337c9313ff45b335 100644 (file)
@@ -11,6 +11,7 @@
 #include <common.h>
 #include <fdt_support.h>
 #include <fdtdec.h>
+#include <env.h>
 #include <errno.h>
 #include <image.h>
 #include <linux/libfdt.h>
index 83050073bf2ac4a3843ac6c5896525bdd06ec316..8d8bbc4da306b4e327b372e55dc8c2bd275eafc6 100644 (file)
@@ -157,18 +157,6 @@ int do_ext2load(cmd_tbl_t *, int, int, char * const []);
  */
 char *env_get(const char *varname);
 
-/**
- * env_get_hex() - Return an environment variable as a hex value
- *
- * Decode an environment as a hex number (it may or may not have a 0x
- * prefix). If the environment variable cannot be found, or does not start
- * with hex digits, the default value is returned.
- *
- * @varname:           Variable to decode
- * @default_val:       Value to return on error
- */
-ulong env_get_hex(const char *varname, ulong default_val);
-
 /**
  * env_set() - set an environment variable
  *
index d7190da335ebe208beaa428c041d5aef0db32930..dd063feb3933e1c96e2fe212a6402f97e419633b 100644 (file)
@@ -93,6 +93,18 @@ ulong env_get_ulong(const char *name, int base, ulong default_val);
  */
 int env_set_ulong(const char *varname, ulong value);
 
+/**
+ * env_get_hex() - Return an environment variable as a hex value
+ *
+ * Decode an environment as a hex number (it may or may not have a 0x
+ * prefix). If the environment variable cannot be found, or does not start
+ * with hex digits, the default value is returned.
+ *
+ * @varname:           Variable to decode
+ * @default_val:       Value to return on error
+ */
+ulong env_get_hex(const char *varname, ulong default_val);
+
 /**
  * env_set_hex() - set an environment variable to a hex value
  *