| 63 | static struct rt_ofw_node *cpu_np[RT_CPUS_NR] = { }; |
| 64 | |
| 65 | void rt_hw_fdt_install_early(void *fdt) |
| 66 | { |
| 67 | if (fdt != RT_NULL && !fdt_check_header(fdt)) |
| 68 | { |
| 69 | fdt_ptr = fdt; |
| 70 | fdt_size = fdt_totalsize(fdt); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | #ifdef RT_USING_HWTIMER |
| 75 | static rt_ubase_t loops_per_tick[RT_CPUS_NR]; |
nothing calls this directly
no test coverage detected