Commit c88d40b2 authored by Peter Hurley's avatar Peter Hurley Committed by Greg Kroah-Hartman

staging/fwserial: Release port regardless of unplug response code

After sending the unplug response, release the port even if an
error occurred.
Signed-off-by: default avatarPeter Hurley <peter@hurleysoftware.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent de321a14
...@@ -2684,10 +2684,9 @@ static void fwserial_handle_unplug_req(struct work_struct *work) ...@@ -2684,10 +2684,9 @@ static void fwserial_handle_unplug_req(struct work_struct *work)
spin_lock_bh(&peer->lock); spin_lock_bh(&peer->lock);
if (peer->state == FWPS_UNPLUG_RESPONDING) { if (peer->state == FWPS_UNPLUG_RESPONDING) {
if (rcode == RCODE_COMPLETE) if (rcode != RCODE_COMPLETE)
port = peer_revert_state(peer);
else
fwtty_err(&peer->unit, "UNPLUG_RSP error (%d)", rcode); fwtty_err(&peer->unit, "UNPLUG_RSP error (%d)", rcode);
port = peer_revert_state(peer);
} }
cleanup: cleanup:
spin_unlock_bh(&peer->lock); spin_unlock_bh(&peer->lock);
......
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