summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorTing Shen <phoenixshen@google.com>2019-10-25 13:01:35 +0800
committerCommit Bot <commit-bot@chromium.org>2019-12-10 07:59:00 +0000
commit204ac42331829819d7f76ea4973f05d5f4f4a1f5 (patch)
tree7c382adac96b8aef5efaf75c4cffceac6866ba70 /board
parent11790bb3ae7d541448bc23f1505346bd20c524c2 (diff)
downloadchrome-ec-204ac42331829819d7f76ea4973f05d5f4f4a1f5.tar.gz
jacuzzi: enlarge stack for hook_task
Seeing stack overflow on recent squash, increase the stack size to fix this. BUG=None TEST=boot on juniper BRANCH=None Change-Id: I95bd4f14c032d35857df5ec9d8e96f8283155114 Signed-off-by: Ting Shen <phoenixshen@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1957341 Commit-Queue: Ting Shen <phoenixshen@chromium.org> Tested-by: Ting Shen <phoenixshen@chromium.org> Reviewed-by: Alexandru M Stan <amstan@chromium.org>
Diffstat (limited to 'board')
-rw-r--r--board/jacuzzi/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/jacuzzi/ec.tasklist b/board/jacuzzi/ec.tasklist
index 4b7574652e..283af8595a 100644
--- a/board/jacuzzi/ec.tasklist
+++ b/board/jacuzzi/ec.tasklist
@@ -7,7 +7,7 @@
* See CONFIG_TASK_LIST in config.h for details.
*/
#define CONFIG_TASK_LIST \
- TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOOKS, hook_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(USB_CHG_P0, usb_charger_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \