| 237 | int enabled); |
| 238 | void mp_init_cpus(DEVTREE_CONST struct bus *cpu_bus); |
| 239 | static inline void mp_cpu_bus_init(struct device *dev) |
| 240 | { |
| 241 | /* Make sure the cpu cluster has a downstream bus for LAPICs to be allocated. */ |
| 242 | struct bus *bus = alloc_bus(dev); |
| 243 | |
| 244 | mp_init_cpus(bus); |
| 245 | } |
| 246 | |
| 247 | /* Debug functions */ |
| 248 | void print_resource_tree(const struct device *root, int debug_level, |
no test coverage detected