* [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
* Re: [PATCH] fdtdump: fix output of bytestring properties
[not found] ` <559D4DCE.4040000-wnI+JWxWOPs@public.gmane.org>
@ 2015-07-09 3:50 ` David Gibson
0 siblings, 0 replies; 2+ messages in thread
From: David Gibson @ 2015-07-09 3:50 UTC (permalink / raw)
To: Prusov Igor Vladimirovich; +Cc: devicetree-compiler-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 1390 bytes --]
On Wed, Jul 08, 2015 at 07:20:30PM +0300, Prusov Igor Vladimirovich wrote:
> 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.
Actually, it's worse than that. It will print incorrectly on
platforms where char is signed by default, but not on those where it
is unsigned by default.
> Signed-off-by: Igor Prusov <Igor.V.Prusov-wnI+JWxWOPs@public.gmane.org>
> ---
> util.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Thanks for this, but there are a couple of problems with this patch
that make it difficult for me to apply directly.
First, the usual convention is to diff the whole tree, not individual
files, so the resulting patch can be applied with -p1.
Second, it looks like your mailer has mangled the patch, replacing
tabs with spaces, which means it won't apply directly.
Please check those if you send patches in future.
FOr this specific bug, I'd actually prefer a slightly different fix,
so I've gone ahead and applied my own slightly different fix.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]
^ 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).