diff options
author | Diana Z <dzigterman@chromium.org> | 2020-05-19 10:34:11 -0600 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2020-05-20 08:57:52 +0000 |
commit | 4d0555e27640092eb5656b690012a2a4734c6504 (patch) | |
tree | 35185f304b3705c7663f81f2a1d3398baf701c16 /board/atlas | |
parent | 9d131016fc46e00c53ebb697ca986905170c630e (diff) | |
download | chrome-ec-4d0555e27640092eb5656b690012a2a4734c6504.tar.gz |
PD: Remove unnecessary PDCMD task
The PDCMD task is only pulling interrupts from the TCPCs on most boards,
which is unnecessary since the PD_INT tasks handle this job now.
Remove it from any boards using the PD_INT command which are not using
the older CONFIG_HOSTCMD_PD functionality (ex. samus, oak).
Located boards using:
find -name "ec.tasklist" | xargs grep -l PD_INT | xargs grep PDCMD
BRANCH=None
BUG=b:154959596
TEST=make -j buildall
Signed-off-by: Diana Z <dzigterman@chromium.org>
Change-Id: I29be8ab1d7a2616603fb55236aed4329ed8654f5
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2208221
Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'board/atlas')
-rw-r--r-- | board/atlas/ec.tasklist | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/board/atlas/ec.tasklist b/board/atlas/ec.tasklist index 4149a73ad9..33e3cccb16 100644 --- a/board/atlas/ec.tasklist +++ b/board/atlas/ec.tasklist @@ -13,7 +13,6 @@ TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_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, LARGER_TASK_STACK_SIZE) \ TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \ TASK_ALWAYS(POWERBTN, power_button_task, NULL, LARGER_TASK_STACK_SIZE) \ |