summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKumar, Gomathi <gomathi.kumar@intel.com>2015-08-07 15:47:32 +0530
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-08-11 02:58:54 +0000
commit722dd54e0a6d0131bc92d3c973e930430be70958 (patch)
treef1988bb346d3d08e2075bb37d04178be07cb0f80
parent2dd0526dfb5813f0ab80111c0281e0b5a6ff54b7 (diff)
downloadchrome-ec-722dd54e0a6d0131bc92d3c973e930430be70958.tar.gz
strago: 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: I57dfa23080d11e6e86a6ba5917bf28d05239bc0d Signed-off-by: Kumar, Gomathi <gomathi.kumar@intel.com> Reviewed-on: https://chromium-review.googlesource.com/291393 Reviewed-by: Shawn N <shawnn@chromium.org> Commit-Queue: Divagar Mohandass <divagar.mohandass@intel.com> Tested-by: Divagar Mohandass <divagar.mohandass@intel.com> (cherry picked from commit bd478accd09fa488cd7c9c73e5714ff02dd0a89b) Reviewed-on: https://chromium-review.googlesource.com/292321
-rw-r--r--board/strago/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/strago/ec.tasklist b/board/strago/ec.tasklist
index 3b1efb3150..c2bb27f0c6 100644
--- a/board/strago/ec.tasklist
+++ b/board/strago/ec.tasklist
@@ -21,7 +21,7 @@
TASK_ALWAYS(USB_CHG_P0, usb_charger_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, 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_NOTEST(PDCMD, pd_command_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \