Browse Source

scripts/dtc: Fixed format mismatch in fprintf

format specifier "d" need arg type "int" , but the according arg
"fdt32_to_cpu(xxx)" has type "unsigned int"

Signed-off-by: nixiaoming <nixiaoming@huawei.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
nixiaoming 6 years ago committed by David Gibson
parent
commit
b9af3b3965
  1. 6
      fdtdump.c
  2. 2
      flattree.c

6
fdtdump.c

@ -66,12 +66,12 @@ static void dump_blob(void *blob, bool debug) @@ -66,12 +66,12 @@ static void dump_blob(void *blob, bool debug)

printf("/dts-v1/;\n");
printf("// magic:\t\t0x%x\n", fdt32_to_cpu(bph->magic));
printf("// totalsize:\t\t0x%x (%d)\n", totalsize, totalsize);
printf("// totalsize:\t\t0x%x (%u)\n", totalsize, totalsize);
printf("// off_dt_struct:\t0x%x\n", off_dt);
printf("// off_dt_strings:\t0x%x\n", off_str);
printf("// off_mem_rsvmap:\t0x%x\n", off_mem_rsvmap);
printf("// version:\t\t%d\n", version);
printf("// last_comp_version:\t%d\n",
printf("// version:\t\t%u\n", version);
printf("// last_comp_version:\t%u\n",
fdt32_to_cpu(bph->last_comp_version));
if (version >= 2)
printf("// boot_cpuid_phys:\t0x%x\n",

2
flattree.c

@ -393,7 +393,7 @@ void dt_to_blob(FILE *f, struct dt_info *dti, int version) @@ -393,7 +393,7 @@ void dt_to_blob(FILE *f, struct dt_info *dti, int version)
padlen = 0;
if (quiet < 1)
fprintf(stderr,
"Warning: blob size %d >= minimum size %d\n",
"Warning: blob size %u >= minimum size %d\n",
fdt32_to_cpu(fdt.totalsize), minsize);
}
}

Loading…
Cancel
Save