]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - common/image.c
common: env_sf: Use CONFIG_SF_DEFAULT_xxx as the default value for CONFIG_ENV_SPI_xxx
[people/ms/u-boot.git] / common / image.c
index 89b3ef6a4643341a221440d13df03a68fa8a8804..0f88984f2d40212fe8bdafd124a8de97846cbc86 100644 (file)
@@ -561,7 +561,7 @@ void genimg_print_size(uint32_t size)
        printf("%d Bytes = ", size);
        print_size(size, "\n");
 #else
-       printf("%d Bytes = %.2f kB = %.2f MB\n",
+       printf("%d Bytes = %.2f KiB = %.2f MiB\n",
                        size, (double)size / 1.024e3,
                        (double)size / 1.048576e6);
 #endif