diff mbox

[U-Boot,1/1] common/image.c: prefixes for binary multiples

Message ID 20170104130444.2544-1-xypron.glpk@gmx.de
State Accepted
Commit cec85d4e002d9b6aa0f98bec50e9fa09dd013cdd
Delegated to: Tom Rini
Headers show

Commit Message

Heinrich Schuchardt Jan. 4, 2017, 1:04 p.m. UTC
IEC 80000-13:2008 Quantities and units
Part 13: Information science and technology 

defines the prefixes to use for binary multiples.

Instead of writing
Data Size:    6726132 Bytes = 6568.49 kB = 6.41 MB
in dumpimage we should write
Data Size:    6726132 Bytes = 6568.49 KiB = 6.41 MiB.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 common/image.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Jan. 21, 2017, 3:37 a.m. UTC | #1
On Wed, Jan 04, 2017 at 02:04:44PM +0100, xypron.glpk@gmx.de wrote:

> IEC 80000-13:2008 Quantities and units
> Part 13: Information science and technology 
> 
> defines the prefixes to use for binary multiples.
> 
> Instead of writing
> Data Size:    6726132 Bytes = 6568.49 kB = 6.41 MB
> in dumpimage we should write
> Data Size:    6726132 Bytes = 6568.49 KiB = 6.41 MiB.
> 
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

With a minor reword, applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/common/image.c b/common/image.c
index 8c35327745..31317a581e 100644
--- a/common/image.c
+++ b/common/image.c
@@ -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