summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlec Berg <alecaberg@chromium.org>2014-09-10 03:08:49 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-09-11 20:00:18 +0000
commit0e59d4f38a97defe45351f2b1e132f76f17160e6 (patch)
tree0d11dbd092c111ebb23700048d27025abcf2cdd9
parentdf66ef06c066e28559260c8efc7b92dfe48c7e41 (diff)
downloadchrome-ec-0e59d4f38a97defe45351f2b1e132f76f17160e6.tar.gz
samus: increase stack size for PDCMD task
Increase task stack size for PD host command task to 512. The nominal stack size is 328 / 384, which is pretty close to the edge. BUG=none BRANCH=none TEST=make -j buildall Change-Id: Ifdf04923b817c832cbb77ba7f61c06a560aec97d Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/217452 Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
-rw-r--r--board/samus/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samus/ec.tasklist b/board/samus/ec.tasklist
index d043fe1777..8db07e8c8b 100644
--- a/board/samus/ec.tasklist
+++ b/board/samus/ec.tasklist
@@ -24,7 +24,7 @@
TASK_NOTEST(MOTIONSENSE, motion_sense_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
- TASK_NOTEST(PDCMD, pd_command_task, NULL, SMALLER_TASK_STACK_SIZE) \
+ TASK_NOTEST(PDCMD, pd_command_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(POWERBTN, power_button_task, NULL, TASK_STACK_SIZE) \