diff options
author | Prashant Malani <pmalani@chromium.org> | 2020-06-19 19:00:37 -0700 |
---|---|---|
committer | Enric Balletbo i Serra <enric.balletbo@collabora.com> | 2020-06-22 17:52:26 +0200 |
commit | 447b4eb6ceeb2d0d83d7f5aa248f2798f167cfda (patch) | |
tree | d00dbaa9f73b4a1579729506147b59c2e914cfe3 /drivers/platform | |
parent | 410457b99c7ea3e0cf8de1054e175ba3c2213d33 (diff) | |
download | linux-stable-447b4eb6ceeb2d0d83d7f5aa248f2798f167cfda.tar.gz linux-stable-447b4eb6ceeb2d0d83d7f5aa248f2798f167cfda.tar.bz2 linux-stable-447b4eb6ceeb2d0d83d7f5aa248f2798f167cfda.zip |
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: 7e7def15fa4b ("platform/chrome: cros_ec_typec: Add USB mux control")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Prashant Malani <pmalani@chromium.org>
Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/chrome/cros_ec_typec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c index 509fc761906b..1df1386f32e4 100644 --- a/drivers/platform/chrome/cros_ec_typec.c +++ b/drivers/platform/chrome/cros_ec_typec.c @@ -428,9 +428,9 @@ static int cros_typec_enable_dp(struct cros_typec_data *typec, return typec_mux_set(port->mux, &port->state); } -int cros_typec_configure_mux(struct cros_typec_data *typec, int port_num, - uint8_t mux_flags, - struct ec_response_usb_pd_control_v2 *pd_ctrl) +static int cros_typec_configure_mux(struct cros_typec_data *typec, int port_num, + uint8_t mux_flags, + struct ec_response_usb_pd_control_v2 *pd_ctrl) { struct cros_typec_port *port = typec->ports[port_num]; enum typec_orientation orientation; |