summaryrefslogtreecommitdiff
path: root/board/beadrix
diff options
context:
space:
mode:
authorFabio Baltieri <fabiobaltieri@google.com>2022-05-16 16:11:35 +0000
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-05-27 15:55:42 +0000
commit2024fc296cc799f75ab1ca502e73e09b6488269a (patch)
tree0a12f20f19820dc6e7d13c695c05362b0e1ef0c4 /board/beadrix
parent5762329719d76c23d395c3816ed503597c4f6cc7 (diff)
downloadchrome-ec-2024fc296cc799f75ab1ca502e73e09b6488269a.tar.gz
usbc: wrap task_set_event to have an explicit port argument
Define an explicit function to set events for the usb charger tasks, so that the caller is not coupled to the internal task implementation, and we can use a single task on a later patch. BRANCH=none BUG=b:226411332 TEST=make buildall TEST=zmake testall TEST=cq dry run Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com> Change-Id: I7a1223642b800568bf4f9864f75b2b647c84d29f Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3663746 Reviewed-by: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to 'board/beadrix')
-rw-r--r--board/beadrix/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/beadrix/board.c b/board/beadrix/board.c
index 7e2e03629e..a08daf5177 100644
--- a/board/beadrix/board.c
+++ b/board/beadrix/board.c
@@ -57,7 +57,7 @@ static void notify_c0_chips(void)
* chip. Therefore we'll need to check both ICs.
*/
schedule_deferred_pd_interrupt(0);
- task_set_event(TASK_ID_USB_CHG_P0, USB_CHG_EVENT_BC12);
+ usb_charger_task_set_event(0, USB_CHG_EVENT_BC12);
}
static void check_c0_line(void)
@@ -91,7 +91,7 @@ DECLARE_DEFERRED(check_c1_line);
static void notify_c1_chips(void)
{
schedule_deferred_pd_interrupt(1);
- task_set_event(TASK_ID_USB_CHG_P1, USB_CHG_EVENT_BC12);
+ usb_charger_task_set_event(1, USB_CHG_EVENT_BC12);
}
static void check_c1_line(void)