Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b8802dc authored by Andreas Kemnade's avatar Andreas Kemnade Committed by Kalle Valo
Browse files

libertas: fix ps-mode related removal problems



When the device is remove e.g. because of going to suspend
 mode with powersaving enabled, lbs_remove_card tries to exit
powersaving state even when already woken up. That command is
not processed properly in that situation, since the command
processing queue is already stopped, so it waits forever
for the command being processed, so disable it.

Signed-off-by: default avatarAndreas Kemnade <andreas@kemnade.info>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent fada24a5
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -1060,6 +1060,11 @@ void lbs_remove_card(struct lbs_private *priv)

	if (priv->psmode == LBS802_11POWERMODEMAX_PSP) {
		priv->psmode = LBS802_11POWERMODECAM;
		/* no need to wakeup if already woken up,
		 * on suspend, this exit ps command is not processed
		 * the driver hangs
		 */
		if (priv->psstate != PS_STATE_FULL_POWER)
			lbs_set_ps_mode(priv, PS_MODE_ACTION_EXIT_PS, true);
	}