summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhuohao Lee <zhuohao@chromium.org>2022-01-23 10:36:57 +0800
committerCommit Bot <commit-bot@chromium.org>2022-01-24 22:26:20 +0000
commit10486bc73efbf06585f91cdc99a2f9c9070ad980 (patch)
treeaba2ea89918c598628d412b38671a5decb4d3172
parentea7809f4de1328cc0c3488d3844719f776e571cd (diff)
downloadchrome-ec-10486bc73efbf06585f91cdc99a2f9c9070ad980.tar.gz
brask: adjust the stack size
Adjust the stack size based on the `make analyzestack` result. BUG=b:204398670 BRANCH=None TEST=make ; make analyzestack and checked the output Change-Id: I3877021e859ea441f35e7d58fe9ae3161e85b532 Signed-off-by: Zhuohao Lee <zhuohao@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3406475 Reviewed-by: caveh jalali <caveh@chromium.org> Commit-Queue: caveh jalali <caveh@chromium.org>
-rw-r--r--board/brask/ec.tasklist6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/brask/ec.tasklist b/board/brask/ec.tasklist
index 46863551f9..fc652a7ec1 100644
--- a/board/brask/ec.tasklist
+++ b/board/brask/ec.tasklist
@@ -22,6 +22,6 @@
TASK_ALWAYS(PD_C0, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_C1, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_C2, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_INT_C0, pd_shared_alert_task, (BIT(2) | BIT(0)), TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, TASK_STACK_SIZE) \
- TASK_ALWAYS(CEC, cec_task, NULL, TASK_STACK_SIZE)
+ TASK_ALWAYS(PD_INT_C0, pd_shared_alert_task, (BIT(2) | BIT(0)), LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CEC, cec_task, NULL, LARGER_TASK_STACK_SIZE)