| 177 | } |
| 178 | |
| 179 | static boot_state_t bs_write_tables(void *arg) |
| 180 | { |
| 181 | timestamp_add_now(TS_WRITE_TABLES); |
| 182 | |
| 183 | /* Now that we have collected all of our information |
| 184 | * write our configuration tables. |
| 185 | */ |
| 186 | write_tables(); |
| 187 | |
| 188 | timestamp_add_now(TS_FINALIZE_CHIPS); |
| 189 | dev_finalize_chips(); |
| 190 | |
| 191 | return BS_PAYLOAD_LOAD; |
| 192 | } |
| 193 | |
| 194 | static boot_state_t bs_payload_load(void *arg) |
| 195 | { |
nothing calls this directly
no test coverage detected