| 68 | int fdt_node_end_offset_(void *fdt, int nodeoffset); |
| 69 | |
| 70 | static inline const void *fdt_offset_ptr_(const void *fdt, int offset) |
| 71 | { |
| 72 | return (const char *)fdt + fdt_off_dt_struct(fdt) + offset; |
| 73 | } |
| 74 | |
| 75 | static inline void *fdt_offset_ptr_w_(void *fdt, int offset) |
| 76 | { |
no outgoing calls
no test coverage detected