summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/host_command.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/shim/src/host_command.c')
-rw-r--r--zephyr/shim/src/host_command.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/zephyr/shim/src/host_command.c b/zephyr/shim/src/host_command.c
index 2e55099de2..5ca84c944a 100644
--- a/zephyr/shim/src/host_command.c
+++ b/zephyr/shim/src/host_command.c
@@ -19,18 +19,10 @@ struct host_command *zephyr_find_host_command(int command)
return NULL;
}
-/* Pointer to the main thread, defined in kernel/init.c */
-extern struct k_thread z_main_thread;
-
void host_command_main(void)
{
- k_thread_priority_set(&z_main_thread,
+ k_thread_priority_set(get_main_thread(),
EC_TASK_PRIORITY(EC_TASK_HOSTCMD_PRIO));
- k_thread_name_set(&z_main_thread, "HOSTCMD");
+ k_thread_name_set(get_main_thread(), "HOSTCMD");
host_command_task(NULL);
}
-
-test_mockable bool in_host_command_main(void)
-{
- return (k_current_get() == &z_main_thread);
-}