env: Move env_get_ulong() to env.h

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>
This commit is contained in:
Simon Glass 2019-08-01 09:46:48 -06:00 committed by Tom Rini
parent 168068fb3d
commit 9eef56dbe3
9 changed files with 20 additions and 13 deletions

View File

@ -9,6 +9,7 @@
* *
*/ */
#include <common.h> #include <common.h>
#include <env.h>
#include <errno.h> #include <errno.h>
#include <spl.h> #include <spl.h>
#include <asm/arch/cpu.h> #include <asm/arch/cpu.h>

View File

@ -12,6 +12,7 @@
#include <common.h> #include <common.h>
#include <dm.h> #include <dm.h>
#include <env.h>
#include <malloc.h> #include <malloc.h>
#include <fs.h> #include <fs.h>
#include <i2c.h> #include <i2c.h>

View File

@ -5,6 +5,7 @@
*/ */
#include "env-lib.h" #include "env-lib.h"
#include <env.h>
#define MAX_CMD_LEN 25 #define MAX_CMD_LEN 25

View File

@ -6,6 +6,7 @@
* Texas Instruments Incorporated, <www.ti.com> * Texas Instruments Incorporated, <www.ti.com>
*/ */
#include <common.h> #include <common.h>
#include <env.h>
#include <asm/arch/clock.h> #include <asm/arch/clock.h>
#include <asm/ti-common/keystone_net.h> #include <asm/ti-common/keystone_net.h>
#include <asm/arch/psc_defs.h> #include <asm/arch/psc_defs.h>

View File

@ -8,6 +8,7 @@
#include <common.h> #include <common.h>
#include <dm.h> #include <dm.h>
#include <env.h>
#include <asm/arch/clock.h> #include <asm/arch/clock.h>
#include <asm/arch/crm_regs.h> #include <asm/arch/crm_regs.h>

View File

@ -157,19 +157,6 @@ int do_ext2load(cmd_tbl_t *, int, int, char * const []);
*/ */
char *env_get(const char *varname); 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 * env_get_hex() - Return an environment variable as a hex value
* *

View 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); 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 * env_set_ulong() - set an environment variable to an integer
* *

View File

@ -8,6 +8,7 @@
#include <boot_fit.h> #include <boot_fit.h>
#include <dm.h> #include <dm.h>
#include <dm/of_extra.h> #include <dm/of_extra.h>
#include <env.h>
#include <errno.h> #include <errno.h>
#include <fdtdec.h> #include <fdtdec.h>
#include <fdt_support.h> #include <fdt_support.h>

View File

@ -10,6 +10,7 @@
#include <common.h> #include <common.h>
#include <command.h> #include <command.h>
#include <env.h>
#include <efi_loader.h> #include <efi_loader.h>
#include <net.h> #include <net.h>
#include <net/tftp.h> #include <net/tftp.h>