diff options
| author | Heiko Schocher <hs@denx.de> | 2009-12-03 11:21:21 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-12-08 22:14:07 +0100 | 
| commit | 4b142febff71eabdb7ddbb125c7b583b24ddc434 (patch) | |
| tree | dcddb5bcbf00a28467eb8bb096fe857b8f86a858 /include/common.h | |
| parent | 00b6d927ba8900cdf218b90b277e1090e284bea6 (diff) | |
| download | olio-uboot-2014.01-4b142febff71eabdb7ddbb125c7b583b24ddc434.tar.xz olio-uboot-2014.01-4b142febff71eabdb7ddbb125c7b583b24ddc434.zip | |
common: delete CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL
There is more and more usage of printing 64bit values,
so enable this feature generally, and delete the
CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL
defines.
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/include/common.h b/include/common.h index 749d35cab..00b543408 100644 --- a/include/common.h +++ b/include/common.h @@ -617,9 +617,7 @@ void	udelay        (unsigned long);  /* lib_generic/vsprintf.c */  ulong	simple_strtoul(const char *cp,char **endp,unsigned int base); -#ifdef CONFIG_SYS_64BIT_VSPRINTF  unsigned long long	simple_strtoull(const char *cp,char **endp,unsigned int base); -#endif  long	simple_strtol(const char *cp,char **endp,unsigned int base);  void	panic(const char *fmt, ...)  		__attribute__ ((format (__printf__, 1, 2))); |