| 147 | const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int checklen); |
| 148 | #endif |
| 149 | static inline void *fdt_offset_ptr_w(void *fdt, int offset, int checklen) |
| 150 | { |
| 151 | return (void *)(uintptr_t)fdt_offset_ptr(fdt, offset, checklen); |
| 152 | } |
| 153 | |
| 154 | uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset); |
| 155 |
no test coverage detected