summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDivagar Mohandass <divagar.mohandass@intel.com>2015-07-28 17:08:41 +0530
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-07-28 21:31:43 +0000
commit134406933618708db416cde59e9f4510b0ac534c (patch)
tree1c8d96013561dc4986aa4f6efd47343ba9dd0d1f
parenta9527fd686dcdd0b04c4eac6690531d945e7f221 (diff)
downloadchrome-ec-134406933618708db416cde59e9f4510b0ac534c.tar.gz
cyan: Increase chipset stack size.
Chipset task is overflowing and causing runtime crash. Increasing the chipset task stack size by 128 bytes. BUG=chrome-os-partner:43329 BRANCH=none TEST=Build/flash EC and boot the platform to OS. Change-Id: I4e444cc48979c74810851ab2625b982fdabdeb73 Signed-off-by: Divagar Mohandass <divagar.mohandass@intel.com> Reviewed-on: https://chromium-review.googlesource.com/289112 Reviewed-by: Shawn N <shawnn@chromium.org>
-rw-r--r--board/cyan/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/cyan/ec.tasklist b/board/cyan/ec.tasklist
index 8e88552f8e..6ef89e4074 100644
--- a/board/cyan/ec.tasklist
+++ b/board/cyan/ec.tasklist
@@ -20,7 +20,7 @@
TASK_ALWAYS(HOOKS, hook_task, NULL, HOOKS_TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, CHARGER_TASK_STACK_SIZE) \
TASK_NOTEST(MOTIONSENSE, motion_sense_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_NOTEST(CHIPSET, chipset_task, NULL, TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, HOST_CMD_TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, CONSOLE_TASK_STACK_SIZE) \