Commit d5f66527 authored by Prashant Malani's avatar Prashant Malani

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: default avatarPrashant Malani <pmalani@chromium.org>
Reviewed-by: default avatarTzung-Bi Shih <tzungbi@kernel.org>
Link: https://lore.kernel.org/r/20220816214857.2088914-7-pmalani@chromium.org
parent 9e6e0516
...@@ -158,12 +158,10 @@ static int cros_typec_get_switch_handles(struct cros_typec_port *port, ...@@ -158,12 +158,10 @@ static int cros_typec_get_switch_handles(struct cros_typec_port *port,
return 0; return 0;
role_sw_err: role_sw_err:
usb_role_switch_put(port->role_sw);
ori_sw_err:
typec_switch_put(port->ori_sw); typec_switch_put(port->ori_sw);
mux_err: ori_sw_err:
typec_mux_put(port->mux); typec_mux_put(port->mux);
mux_err:
return -ENODEV; return -ENODEV;
} }
......
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