subsys/portability/cmsis_rtos_v2: Fix code compliance issues

Fix issues detected by checkpatch

Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
Alberto Escolar Piedras 2025-05-20 11:56:55 +02:00 committed by Benjamin Cabé
commit bb085820fc

View file

@ -193,6 +193,7 @@ osThreadId_t osThreadNew(osThreadFunc_t threadfunc, void *arg, const osThreadAtt
NULL, threadfunc, prio, 0, K_NO_WAIT);
const char *name = (attr->name == NULL) ? init_thread_attrs.name : attr->name;
k_thread_name_set(&tid->z_thread, name);
return (osThreadId_t)tid;