summaryrefslogtreecommitdiff
path: root/board/chell/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/chell/board.c')
-rw-r--r--board/chell/board.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/board/chell/board.c b/board/chell/board.c
index e8c013353c..6637e56543 100644
--- a/board/chell/board.c
+++ b/board/chell/board.c
@@ -20,7 +20,6 @@
#include "keyboard_scan.h"
#include "lid_switch.h"
#include "pi3usb9281.h"
-#include "ps8740.h"
#include "power.h"
#include "power_button.h"
#include "pwm.h"
@@ -35,6 +34,7 @@
#include "uart.h"
#include "usb_charge.h"
#include "usb_mux.h"
+#include "usb_mux_ps874x.h"
#include "usb_pd.h"
#include "usb_pd_tcpm.h"
#include "util.h"
@@ -169,12 +169,12 @@ struct pi3usb9281_config pi3usb9281_chips[] = {
BUILD_ASSERT(ARRAY_SIZE(pi3usb9281_chips) ==
CONFIG_BC12_DETECT_PI3USB9281_CHIP_COUNT);
-static int ps8740_tune_mux(const struct usb_mux *mux)
+static int ps874x_tune_mux(const struct usb_mux *mux)
{
/* Apply same USB EQ settings to both Type-C mux */
- ps8740_tune_usb_eq(mux->port_addr,
- PS8740_USB_EQ_TX_6_5_DB,
- PS8740_USB_EQ_RX_14_3_DB);
+ ps874x_tune_usb_eq(mux->port_addr,
+ PS874X_USB_EQ_TX_6_5_DB,
+ PS874X_USB_EQ_RX_14_3_DB);
return EC_SUCCESS;
}
@@ -182,13 +182,13 @@ static int ps8740_tune_mux(const struct usb_mux *mux)
struct usb_mux usb_muxes[CONFIG_USB_PD_PORT_COUNT] = {
{
.port_addr = 0x34,
- .driver = &ps8740_usb_mux_driver,
- .board_init = &ps8740_tune_mux,
+ .driver = &ps874x_usb_mux_driver,
+ .board_init = &ps874x_tune_mux,
},
{
.port_addr = 0x20,
- .driver = &ps8740_usb_mux_driver,
- .board_init = &ps8740_tune_mux,
+ .driver = &ps874x_usb_mux_driver,
+ .board_init = &ps874x_tune_mux,
}
};