Re: [PATCH] scripts/dtc: Fixed format mismatch in fprintf

2018-05-24 Thread Frank Rowand
On 05/23/18 19:50, nixiaoming wrote: > format specifier "d" need arg type "int" , but the according arg > "fdt32_to_cpu(xxx)" has type "unsigned int" > > Signed-off-by: nixiaoming > --- > scripts/dtc/fdtdump.c | 6 +++--- > scripts/dtc/flattree.c | 2 +- > 2 files changed, 4 insertions(+), 4 de

[PATCH] scripts/dtc: Fixed format mismatch in fprintf

2018-05-23 Thread nixiaoming
format specifier "d" need arg type "int" , but the according arg "fdt32_to_cpu(xxx)" has type "unsigned int" Signed-off-by: nixiaoming --- scripts/dtc/fdtdump.c | 6 +++--- scripts/dtc/flattree.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/dtc/fdtdump.c b/scri