From 832b2cc58b492eb706aade155a34e8e4cbeb4da2 Mon Sep 17 00:00:00 2001 From: Alec Berg Date: Tue, 27 Oct 2015 18:02:48 -0700 Subject: [PATCH] samus: increase POWERBTN task stack size BUG=chromium:547879 BRANCH=samus TEST=make BOARD=samus Change-Id: Iba29d53918245714ffcf6c87f42d1fa98be028b8 Signed-off-by: Alec Berg Reviewed-on: https://chromium-review.googlesource.com/309142 Reviewed-by: Shawn N (cherry picked from commit 12d924b7a05ddcd64a6d845faba5d6dc348c4bbd) Reviewed-on: https://chromium-review.googlesource.com/309553 --- board/samus/ec.tasklist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/samus/ec.tasklist b/board/samus/ec.tasklist index 3013bacf53..58967f508d 100644 --- a/board/samus/ec.tasklist +++ b/board/samus/ec.tasklist @@ -28,5 +28,5 @@ 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) \ + TASK_ALWAYS(POWERBTN, power_button_task, NULL, LARGER_TASK_STACK_SIZE) \ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE)