BACKPORT: usb: typec: ucsi: Fix reuse of completion structure
The role swapping completion variable is reused, so it needs to be reinitialised every time. Otherwise it will be marked as done after the first time it's used and completing immediately. Bug: 254441685 Link: https://lore.kernel.org/linux-usb/20220325203959.GA19752@jackp-linux.qualcomm.com/ Fixes: 6df475f804e6 ("usb: typec: ucsi: Start using struct typec_operations") Cc: stable@vger.kernel.org Reported-and-suggested-by: Jack Pham <quic_jackp@quicinc.com> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Link: https://lore.kernel.org/r/20220405134824.68067-2-heikki.krogerus@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> (cherry picked from commit e25adcca917d7e4cdc1dc6444d0692ffda7594bf) Signed-off-by: Lee Jones <joneslee@google.com> Change-Id: I2213ab8733a17495198c09fbf990ecc9de991ab2
This commit is contained in:
parent
ef283814b2
commit
2117e7c78a
@ -739,6 +739,8 @@ static int ucsi_dr_swap(struct typec_port *port, enum typec_data_role role)
|
||||
role == TYPEC_HOST))
|
||||
goto out_unlock;
|
||||
|
||||
reinit_completion(&con->complete);
|
||||
|
||||
UCSI_CMD_SET_UOR(ctrl, con, role);
|
||||
ret = ucsi_role_cmd(con, &ctrl);
|
||||
if (ret < 0)
|
||||
@ -774,6 +776,8 @@ static int ucsi_pr_swap(struct typec_port *port, enum typec_role role)
|
||||
if (con->status.pwr_dir == role)
|
||||
goto out_unlock;
|
||||
|
||||
reinit_completion(&con->complete);
|
||||
|
||||
UCSI_CMD_SET_PDR(ctrl, con, role);
|
||||
ret = ucsi_role_cmd(con, &ctrl);
|
||||
if (ret < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user