| 92 | } |
| 93 | |
| 94 | int dtb_node_read_s32_default(const struct dtb_node *node, const char *propname, int32_t def) |
| 95 | { |
| 96 | RT_ASSERT(dtb_node_valid(node)); |
| 97 | dtb_node_read_u32(node, propname, (uint32_t *)&def); |
| 98 | |
| 99 | return def; |
| 100 | } |
| 101 | |
| 102 | int dtb_node_read_u32_index(const struct dtb_node *dn, const char *propname, |
| 103 | int index, uint32_t *outp) |
nothing calls this directly
no test coverage detected