summaryrefslogtreecommitdiff
path: root/baseboard/kukui
diff options
context:
space:
mode:
authorKeith Short <keithshort@chromium.org>2022-01-28 14:28:16 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-03-29 18:04:26 +0000
commite38f4cb8739bdc11a9abf2bd4546b697acf32a9a (patch)
tree18e79aad4c4cc472ce52b965f54bf57dfd12907b /baseboard/kukui
parent863d8d8344ce306668fc0e88c78a928e4e2716af (diff)
downloadchrome-ec-e38f4cb8739bdc11a9abf2bd4546b697acf32a9a.tar.gz
hooks: rename charger init priority to match others
Rename HOOK_PRIO_CHARGE_MANAGER_INIT to HOOK_PRIO_INIT_CHARGE_MANAGER, matching the pattern used for the other initialization priorities. BUG=none BRANCH=none TEST=compare_build.sh Signed-off-by: Keith Short <keithshort@chromium.org> Change-Id: Icb80b3cb1297888fcde2eb7d6de86fbc215fe212 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3553673 Reviewed-by: Jack Rosenthal <jrosenth@chromium.org>
Diffstat (limited to 'baseboard/kukui')
-rw-r--r--baseboard/kukui/base_detect_kukui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/baseboard/kukui/base_detect_kukui.c b/baseboard/kukui/base_detect_kukui.c
index 68542b4fb6..55da56f687 100644
--- a/baseboard/kukui/base_detect_kukui.c
+++ b/baseboard/kukui/base_detect_kukui.c
@@ -227,5 +227,5 @@ static void board_pogo_charge_init(void)
charge_manager_update_charge(i, CHARGE_PORT_POGO, NULL);
}
DECLARE_HOOK(HOOK_INIT, board_pogo_charge_init,
- HOOK_PRIO_CHARGE_MANAGER_INIT + 1);
+ HOOK_PRIO_INIT_CHARGE_MANAGER + 1);
#endif