summaryrefslogtreecommitdiff
path: root/board/gelarshie/board.c
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/gelarshie/board.c
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/gelarshie/board.c')
-rw-r--r--board/gelarshie/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/gelarshie/board.c b/board/gelarshie/board.c
index 6dde95908f..b16e2f823f 100644
--- a/board/gelarshie/board.c
+++ b/board/gelarshie/board.c
@@ -74,12 +74,12 @@ static void tcpc_alert_event(enum gpio_signal signal)
static void usb0_evt(enum gpio_signal signal)
{
- task_set_event(TASK_ID_USB_CHG_P0, USB_CHG_EVENT_BC12);
+ usb_charger_task_set_event(0, USB_CHG_EVENT_BC12);
}
static void usb1_evt(enum gpio_signal signal)
{
- task_set_event(TASK_ID_USB_CHG_P1, USB_CHG_EVENT_BC12);
+ usb_charger_task_set_event(1, USB_CHG_EVENT_BC12);
}
static void ppc_interrupt(enum gpio_signal signal)