Home | History | Annotate | Download | only in dtc

Lines Matching defs:tag

25 static const char *tagname(uint32_t tag)
36 if (tag < ARRAY_SIZE(names))
37 if (names[tag])
38 return names[tag];
58 uint32_t tag;
99 while ((tag = fdt32_to_cpu(GET_CELL(p))) != FDT_END) {
101 dumpf("%04zx: tag: 0x%08x (%s)\n",
102 (uintptr_t)p - blob_off - 4, tag, tagname(tag));
104 if (tag == FDT_BEGIN_NODE) {
117 if (tag == FDT_END_NODE) {
124 if (tag == FDT_NOP) {
129 if (tag != FDT_PROP) {
130 fprintf(stderr, "%*s ** Unknown tag 0x%08x\n", depth * shift, "", tag);