Commit 447b4eb6 authored by Prashant Malani's avatar Prashant Malani Committed by Enric Balletbo i Serra

platform/chrome: cros_ec_typec: Make configure_mux static

Since cros_typec_configure_mux() is only used in cros-ec-typec,
it should be marked static.

Fixes: 7e7def15 ("platform/chrome: cros_ec_typec: Add USB mux control")
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarPrashant Malani <pmalani@chromium.org>
Signed-off-by: default avatarEnric Balletbo i Serra <enric.balletbo@collabora.com>
parent 410457b9
...@@ -428,9 +428,9 @@ static int cros_typec_enable_dp(struct cros_typec_data *typec, ...@@ -428,9 +428,9 @@ static int cros_typec_enable_dp(struct cros_typec_data *typec,
return typec_mux_set(port->mux, &port->state); return typec_mux_set(port->mux, &port->state);
} }
int cros_typec_configure_mux(struct cros_typec_data *typec, int port_num, static int cros_typec_configure_mux(struct cros_typec_data *typec, int port_num,
uint8_t mux_flags, uint8_t mux_flags,
struct ec_response_usb_pd_control_v2 *pd_ctrl) struct ec_response_usb_pd_control_v2 *pd_ctrl)
{ {
struct cros_typec_port *port = typec->ports[port_num]; struct cros_typec_port *port = typec->ports[port_num];
enum typec_orientation orientation; enum typec_orientation orientation;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment