devicetree-compiler.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fdtdump: fix output of bytestring properties
@ 2015-07-08 16:20 Prusov Igor Vladimirovich
       [not found] ` <559D4DCE.4040000-wnI+JWxWOPs@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Prusov Igor Vladimirovich @ 2015-07-08 16:20 UTC (permalink / raw)
  To: devicetree-compiler-u79uwXL29TY76Z2rM5mHXA

Currently, when fdtdump prints bytestring property, it prints ffffff 
in front of bytes with first bit equal to 1 (0x80 - 0xff)

For example:
property = [80];
will become
property = [ffffff80];
This patch fixes it.

Signed-off-by: Igor Prusov <Igor.V.Prusov-wnI+JWxWOPs@public.gmane.org>
---
 util.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -up util.c{.orig,}
--- util.c.orig    2015-07-08 16:45:49.374127737 +0300
+++ util.c    2015-07-08 16:45:53.095127906 +0300
@@ -378,7 +378,7 @@ void utilfdt_print_data(const char *data
     } else {
         printf(" = [");
         for (i = 0; i < len; i++)
-            printf("%02x%s", *p++, i < len - 1 ? " " : "");
+            printf("%02hhx%s", *p++, i < len - 1 ? " " : "");
         printf("]");
     }
 }

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-07-09  3:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-08 16:20 [PATCH] fdtdump: fix output of bytestring properties Prusov Igor Vladimirovich
     [not found] ` <559D4DCE.4040000-wnI+JWxWOPs@public.gmane.org>
2015-07-09  3:50   ` David Gibson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).