| 22 | #include "ofw_internal.h" |
| 23 | |
| 24 | static int ofw_interrupt_cells(struct rt_ofw_node *np) |
| 25 | { |
| 26 | int interrupt_cells = -RT_EEMPTY; |
| 27 | |
| 28 | rt_ofw_prop_read_u32(np, "#interrupt-cells", (rt_uint32_t *)&interrupt_cells); |
| 29 | |
| 30 | return interrupt_cells; |
| 31 | } |
| 32 | |
| 33 | int rt_ofw_irq_cells(struct rt_ofw_node *np) |
| 34 | { |
no test coverage detected