diff options
Diffstat (limited to 'common/image.c')
| -rw-r--r-- | common/image.c | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/common/image.c b/common/image.c index 5cc3ab49d..82e7aa436 100644 --- a/common/image.c +++ b/common/image.c @@ -436,11 +436,7 @@ phys_size_t getenv_bootm_size(void)  	char *s = getenv ("bootm_size");  	if (s) {  		phys_size_t tmp; -#ifdef CONFIG_SYS_64BIT_STRTOUL  		tmp = (phys_size_t)simple_strtoull (s, NULL, 16); -#else -		tmp = (phys_size_t)simple_strtoul (s, NULL, 16); -#endif  		return tmp;  	} |