summaryrefslogtreecommitdiff
path: root/zephyr/projects/herobrine/src/herobrine/alt_dev_replacement.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/projects/herobrine/src/herobrine/alt_dev_replacement.c')
-rw-r--r--zephyr/projects/herobrine/src/herobrine/alt_dev_replacement.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/zephyr/projects/herobrine/src/herobrine/alt_dev_replacement.c b/zephyr/projects/herobrine/src/herobrine/alt_dev_replacement.c
index 1b5c1e3d92..00acd509f4 100644
--- a/zephyr/projects/herobrine/src/herobrine/alt_dev_replacement.c
+++ b/zephyr/projects/herobrine/src/herobrine/alt_dev_replacement.c
@@ -1,4 +1,4 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+/* Copyright 2021 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -12,7 +12,7 @@ LOG_MODULE_REGISTER(alt_dev_replacement);
#define BOARD_VERSION_UNKNOWN 0xffffffff
/* Check board version to decide which ppc is used. */
-static bool board_has_syv_ppc(void)
+static bool board_has_alt_ppc(void)
{
static uint32_t board_version = BOARD_VERSION_UNKNOWN;
@@ -29,7 +29,8 @@ static bool board_has_syv_ppc(void)
static void check_alternate_devices(void)
{
/* Configure the PPC driver */
- if (board_has_syv_ppc())
- PPC_ENABLE_ALTERNATE(ppc_port0_syv);
+ if (board_has_alt_ppc())
+ /* Arg is the USB port number */
+ PPC_ENABLE_ALTERNATE(0);
}
DECLARE_HOOK(HOOK_INIT, check_alternate_devices, HOOK_PRIO_DEFAULT);