| 401 | } |
| 402 | |
| 403 | static void fdt_begin_node_num(FDTState *s, const char *name, uint64_t n) |
| 404 | { |
| 405 | char buf[256]; |
| 406 | snprintf(buf, sizeof(buf), "%s@%" PRIx64, name, n); |
| 407 | fdt_begin_node(s, buf); |
| 408 | } |
| 409 | |
| 410 | static void fdt_end_node(FDTState *s) |
| 411 | { |
no test coverage detected