| 122 | } |
| 123 | |
| 124 | static boot_state_t bs_dev_enable(void *arg) |
| 125 | { |
| 126 | timestamp_add_now(TS_DEVICE_ENABLE); |
| 127 | |
| 128 | /* Now actually enable devices on the bus */ |
| 129 | dev_enable(); |
| 130 | |
| 131 | return BS_DEV_INIT; |
| 132 | } |
| 133 | |
| 134 | static boot_state_t bs_dev_init(void *arg) |
| 135 | { |
nothing calls this directly
no test coverage detected