aboutsummaryrefslogtreecommitdiffstats
path: root/main/dtc/use-tx-as-the-type-specifier-instead-of-zx.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/dtc/use-tx-as-the-type-specifier-instead-of-zx.patch')
-rw-r--r--main/dtc/use-tx-as-the-type-specifier-instead-of-zx.patch32
1 files changed, 2 insertions, 30 deletions
diff --git a/main/dtc/use-tx-as-the-type-specifier-instead-of-zx.patch b/main/dtc/use-tx-as-the-type-specifier-instead-of-zx.patch
index 25349444e8..3021c13954 100644
--- a/main/dtc/use-tx-as-the-type-specifier-instead-of-zx.patch
+++ b/main/dtc/use-tx-as-the-type-specifier-instead-of-zx.patch
@@ -18,36 +18,8 @@ index 4eaade9..4dcac19 100644
p = p_struct;
while ((tag = fdt32_to_cpu(GET_CELL(p))) != FDT_END) {
-- dumpf("%04zx: tag: 0x%08x (%s)\n",
-+ dumpf("%04tx: tag: 0x%08x (%s)\n",
+- dumpf("%04zx: tag: 0x%08"PRIx32" (%s)\n",
++ dumpf("%04tx: tag: 0x%08"PRIx32" (%s)\n",
(uintptr_t)p - blob_off - 4, tag, tagname(tag));
if (tag == FDT_BEGIN_NODE) {
-@@ -138,8 +138,8 @@ static void dump_blob(void *blob, bool debug)
-
- p = PALIGN(p + sz, 4);
-
-- dumpf("%04zx: string: %s\n", (uintptr_t)s - blob_off, s);
-- dumpf("%04zx: value\n", (uintptr_t)t - blob_off);
-+ dumpf("%04tx: string: %s\n", (uintptr_t)s - blob_off, s);
-+ dumpf("%04tx: value\n", (uintptr_t)t - blob_off);
- printf("%*s%s", depth * shift, "", s);
- utilfdt_print_data(t, sz);
- printf(";\n");
-@@ -222,14 +222,14 @@ int main(int argc, char *argv[])
- if (valid_header(p, this_len))
- break;
- if (debug)
-- printf("%s: skipping fdt magic at offset %#zx\n",
-+ printf("%s: skipping fdt magic at offset %#tx\n",
- file, p - buf);
- }
- ++p;
- }
- if (!p || endp - p < sizeof(struct fdt_header))
- die("%s: could not locate fdt magic\n", file);
-- printf("%s: found fdt at offset %#zx\n", file, p - buf);
-+ printf("%s: found fdt at offset %#tx\n", file, p - buf);
- buf = p;
- } else if (!valid_header(buf, len))
- die("%s: header is not valid\n", file);