| 92 | } |
| 93 | |
| 94 | static boot_state_t bs_dev_init_chips(void *arg) |
| 95 | { |
| 96 | timestamp_add_now(TS_DEVICE_INIT_CHIPS); |
| 97 | |
| 98 | /* Initialize chips early, they might disable unused devices. */ |
| 99 | dev_initialize_chips(); |
| 100 | |
| 101 | return BS_DEV_ENUMERATE; |
| 102 | } |
| 103 | |
| 104 | static boot_state_t bs_dev_enumerate(void *arg) |
| 105 | { |
nothing calls this directly
no test coverage detected