Commit ad12d0f4 authored by David Woodhouse's avatar David Woodhouse Committed by David S. Miller
Browse files

libertas: let __lbs_cmd() free its own cmdnode

parent 5ba2f8a0
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1310,6 +1310,7 @@ void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
	cmd->cmdwaitqwoken = 1;
	wake_up_interruptible(&cmd->cmdwait_q);

	if (!cmd->callback)
		__lbs_cleanup_and_insert_cmd(priv, cmd);
	priv->cur_cmd = NULL;
}
@@ -2219,6 +2220,7 @@ int __lbs_cmd(struct lbs_private *priv, uint16_t command,
		priv->cur_cmd_retcode = 0;
		ret = -1;
	}
	__lbs_cleanup_and_insert_cmd(priv, cmdnode);
	spin_unlock_irqrestore(&priv->driver_lock, flags);

done: