summaryrefslogtreecommitdiff
path: root/board/scarlet
diff options
context:
space:
mode:
authorPhilip Chen <philipchen@google.com>2018-12-27 18:05:31 -0800
committerchrome-bot <chrome-bot@chromium.org>2019-01-05 14:52:12 -0800
commit88f7e7992fde6b0797c72474c8cba827ade82492 (patch)
tree991c69daf76c15090a9433b92664ce801ab87269 /board/scarlet
parenta85c958633de765e529f2fb539fdc130dd99a6a2 (diff)
downloadchrome-ec-88f7e7992fde6b0797c72474c8cba827ade82492.tar.gz
scarlet: Increase stack size for PD INT task
This is the fix for: "Stack overflow in PD_INT_C0 task!" BUG=b:122085772 BRANCH=scarlet TEST=Plug/Unplug AC w/o seeing stack overflow Change-Id: I225b48c11030b9a472983260b71cdc0fa2642c7f Signed-off-by: Philip Chen <philipchen@google.com> Reviewed-on: https://chromium-review.googlesource.com/1390946 Commit-Ready: Philip Chen <philipchen@chromium.org> Tested-by: Philip Chen <philipchen@chromium.org> Reviewed-by: Nicolas Boichat <drinkcat@chromium.org>
Diffstat (limited to 'board/scarlet')
-rw-r--r--board/scarlet/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/scarlet/ec.tasklist b/board/scarlet/ec.tasklist
index 10d0abec4a..26fc8d26a8 100644
--- a/board/scarlet/ec.tasklist
+++ b/board/scarlet/ec.tasklist
@@ -26,5 +26,5 @@
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, TASK_STACK_SIZE)
+ TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, LARGER_TASK_STACK_SIZE)