]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - common/image.c
common: delete CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL
[people/ms/u-boot.git] / common / image.c
index 5cc3ab49d888961b93c4f6b32adf6efefcc7be55..82e7aa4361f3689cdfe69f55d6a3fba01a709a56 100644 (file)
@@ -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;
        }