summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2019-08-01 09:46:46 -0600
committerTom Rini <[email protected]>2019-08-11 16:43:41 -0400
commitc7694dd4837ba12db3bcda872a1047a44566e0e8 (patch)
tree342d485e989590d44bbd921a77bb0e5452c041c0 /include
parentb9ca02c2d554cb46a4579e1382561c529820b494 (diff)
env: Move env_set_hex() to env.h
Move env_set_hex() over to the new header file along with env_set_addr() which uses it. Signed-off-by: Simon Glass <[email protected]> Acked-by: Joe Hershberger <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/common.h21
-rw-r--r--include/env.h22
2 files changed, 22 insertions, 21 deletions
diff --git a/include/common.h b/include/common.h
index 26ec18ded47..100eac6e5e9 100644
--- a/include/common.h
+++ b/include/common.h
@@ -209,27 +209,6 @@ int env_set(const char *varname, const char *value);
*/
int env_set_ulong(const char *varname, ulong value);
-/**
- * env_set_hex() - set an environment variable to a hex value
- *
- * @varname: Variable to adjust
- * @value: Value to set for the variable (will be converted to a hex string)
- * @return 0 if OK, 1 on error
- */
-int env_set_hex(const char *varname, ulong value);
-
-/**
- * env_set_addr - Set an environment variable to an address in hex
- *
- * @varname: Environment variable to set
- * @addr: Value to set it to
- * @return 0 if ok, 1 on error
- */
-static inline int env_set_addr(const char *varname, const void *addr)
-{
- return env_set_hex(varname, (ulong)addr);
-}
-
void pci_init_board(void);
/* common/exports.c */
diff --git a/include/env.h b/include/env.h
index bf34ac3f862..5c780f30d61 100644
--- a/include/env.h
+++ b/include/env.h
@@ -10,6 +10,7 @@
#define __ENV_H
#include <stdbool.h>
+#include <linux/types.h>
/**
* env_get_id() - Gets a sequence number for the environment
@@ -63,6 +64,27 @@ int env_match(unsigned char *name, int index);
int env_get_f(const char *name, char *buf, unsigned int len);
/**
+ * env_set_hex() - set an environment variable to a hex value
+ *
+ * @varname: Variable to adjust
+ * @value: Value to set for the variable (will be converted to a hex string)
+ * @return 0 if OK, 1 on error
+ */
+int env_set_hex(const char *varname, ulong value);
+
+/**
+ * env_set_addr - Set an environment variable to an address in hex
+ *
+ * @varname: Environment variable to set
+ * @addr: Value to set it to
+ * @return 0 if ok, 1 on error
+ */
+static inline int env_set_addr(const char *varname, const void *addr)
+{
+ return env_set_hex(varname, (ulong)addr);
+}
+
+/**
* env_complete() - return an auto-complete for environment variables
*
* @var: partial name to auto-complete