| 242 | } |
| 243 | |
| 244 | int fdt_subnode_offset(const void *fdt, int parentoffset, |
| 245 | const char *name) |
| 246 | { |
| 247 | return fdt_subnode_offset_namelen(fdt, parentoffset, name, strlen(name)); |
| 248 | } |
| 249 | |
| 250 | int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen) |
| 251 | { |
no test coverage detected