| 102 | } |
| 103 | |
| 104 | static boot_state_t bs_dev_enumerate(void *arg) |
| 105 | { |
| 106 | timestamp_add_now(TS_DEVICE_ENUMERATE); |
| 107 | |
| 108 | /* Find the devices we don't have hard coded knowledge about. */ |
| 109 | dev_enumerate(); |
| 110 | |
| 111 | return BS_DEV_RESOURCES; |
| 112 | } |
| 113 | |
| 114 | static boot_state_t bs_dev_resources(void *arg) |
| 115 | { |
nothing calls this directly
no test coverage detected