| 132 | } |
| 133 | |
| 134 | static boot_state_t bs_dev_init(void *arg) |
| 135 | { |
| 136 | timestamp_add_now(TS_DEVICE_INITIALIZE); |
| 137 | |
| 138 | /* And of course initialize devices on the bus */ |
| 139 | dev_initialize(); |
| 140 | |
| 141 | return BS_POST_DEVICE; |
| 142 | } |
| 143 | |
| 144 | static boot_state_t bs_post_device(void *arg) |
| 145 | { |
nothing calls this directly
no test coverage detected