[uart] Fix uart driver & testapp j6::thread usage

The prior change to j6::thread allowing arguments did not test drv.uart
or testapp. Oops.
This commit is contained in:
Justin C. Miller
2023-02-08 23:20:44 -08:00
parent 094b54d728
commit 8f968f4954
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ channel_pump_loop()
}
void
pump_proc()
pump_proc(void *)
{
j6_process_exit(channel_pump_loop());
}

View File

@@ -21,7 +21,7 @@ constexpr uintptr_t stack_top = 0xf80000000;
uint32_t flipflop = 0;
void
thread_proc()
thread_proc(void*)
{
j6_log("sub thread starting");