diff options
author | Kyoung Kim <kyoung.il.kim@intel.com> | 2018-10-04 20:00:03 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2018-11-21 01:25:08 -0800 |
commit | b48cc28be9186d022013c9b997a13c2c93e2ec14 (patch) | |
tree | b6e595b74f958e6aed09ea7edeb95b6d5d84e7fe | |
parent | 42f0cd98f872f670b8f70b057ed9e8312beefa05 (diff) | |
download | chrome-ec-b48cc28be9186d022013c9b997a13c2c93e2ec14.tar.gz |
atlas_ish: remove HostCommand task related.
Atlas is migrated from Host Command to HECI protocol.
Remove Host Command task and old ipc task.
BUG=b:79676054
TEST=none
Change-Id: Ic77b1d16de7772a1c69cba6fcf5d7d7849a06213
Signed-off-by: Kyoung Kim <kyoung.il.kim@intel.com>
Reviewed-on: https://chromium-review.googlesource.com/1263897
Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com>
Tested-by: Kyoung Il Kim <kyoung.il.kim@intel.com>
Reviewed-by: Caveh Jalali <caveh@google.com>
Reviewed-by: Kyoung Il Kim <kyoung.il.kim@intel.com>
-rw-r--r-- | board/atlas_ish/ec.tasklist | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/board/atlas_ish/ec.tasklist b/board/atlas_ish/ec.tasklist index 9e1868b7fb..f384af4d8b 100644 --- a/board/atlas_ish/ec.tasklist +++ b/board/atlas_ish/ec.tasklist @@ -19,6 +19,4 @@ #define CONFIG_TASK_LIST \ TASK_ALWAYS(HOOKS, hook_task, NULL, HUGE_TASK_STACK_SIZE) \ - TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \ - TASK_ALWAYS(IPC_COMM, ipc_comm_task, NULL, LARGER_TASK_STACK_SIZE) \ - TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) + TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) |