| 176 | } |
| 177 | |
| 178 | int fdt_subnode_offset(const void *fdt, int parentoffset, |
| 179 | const char *name) |
| 180 | { |
| 181 | return fdt_subnode_offset_namelen(fdt, parentoffset, name, strlen(name)); |
| 182 | } |
| 183 | |
| 184 | int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen) |
| 185 | { |
no test coverage detected