| 417 | } |
| 418 | |
| 419 | const void *fdt_getprop(const void *fdt, int nodeoffset, |
| 420 | const char *name, int *lenp) |
| 421 | { |
| 422 | return fdt_getprop_namelen(fdt, nodeoffset, name, strlen(name), lenp); |
| 423 | } |
| 424 | |
| 425 | uint32_t fdt_get_phandle(const void *fdt, int nodeoffset) |
| 426 | { |
no test coverage detected