Skip to content

Commit 94f81a8

Browse files
committed
soc: bee: increase rtk-pm-workq-thread stack size
512 bytes is not enough for rtl8752h, increase it to 768 bytes. Signed-off-by: Zhiyuan Tang <zhiyuan_tang@realsil.com.cn>
1 parent d4371bd commit 94f81a8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

soc/realtek/bee/rtl8752h/power.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ void pm_resume_devices_rtk(void)
213213
CPU_DLPS_Exit();
214214
}
215215

216-
#define RTK_PM_WORKQ_STACK_SIZE 512
216+
#define RTK_PM_WORKQ_STACK_SIZE 768
217217
#define RTK_PM_WORKQ_PRIORITY K_HIGHEST_THREAD_PRIO
218218

219219
K_THREAD_STACK_DEFINE(rtk_pm_workq_stack_area, RTK_PM_WORKQ_STACK_SIZE);

soc/realtek/bee/rtl87x2g/power.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <zephyr/logging/log.h>
3131
LOG_MODULE_REGISTER(rtl87x2g_pm, LOG_LEVEL_INF);
3232

33-
#define RTK_PM_WORKQ_STACK_SIZE 512
33+
#define RTK_PM_WORKQ_STACK_SIZE 768
3434
#define RTK_PM_WORKQ_PRIORITY K_HIGHEST_THREAD_PRIO
3535

3636
K_THREAD_STACK_DEFINE(rtk_pm_workq_stack_area, RTK_PM_WORKQ_STACK_SIZE);

0 commit comments

Comments
 (0)