From: Prashant Malani Date: Tue, 16 Aug 2022 21:48:34 +0000 (+0000) Subject: platform/chrome: cros_ec_typec: Cleanup switch handle return paths X-Git-Tag: v6.6.17~6496^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5f66527db9e0e6a871d9005200b3394156cf16f;p=platform%2Fkernel%2Flinux-rpi.git platform/chrome: cros_ec_typec: Cleanup switch handle return paths Some of the return paths for the cros_typec_get_switch_handles() aren't necessary. Clean up the return paths to only undo the handle get's which succeeded. Signed-off-by: Prashant Malani Reviewed-by: Tzung-Bi Shih Link: https://lore.kernel.org/r/20220816214857.2088914-7-pmalani@chromium.org --- diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c index de6ee0f..ee54add 100644 --- a/drivers/platform/chrome/cros_ec_typec.c +++ b/drivers/platform/chrome/cros_ec_typec.c @@ -158,12 +158,10 @@ static int cros_typec_get_switch_handles(struct cros_typec_port *port, return 0; role_sw_err: - usb_role_switch_put(port->role_sw); -ori_sw_err: typec_switch_put(port->ori_sw); -mux_err: +ori_sw_err: typec_mux_put(port->mux); - +mux_err: return -ENODEV; }