From: Ben Greear <greearb@xxxxxxxxxxxxxxx> Signed-off-by: Ben Greear <greearb@xxxxxxxxxxxxxxx> --- drivers/net/wireless/ath/ath10k/core.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c index 030bef1..d522d3a 100644 --- a/drivers/net/wireless/ath/ath10k/core.c +++ b/drivers/net/wireless/ath/ath10k/core.c @@ -700,6 +700,7 @@ static void ath10k_core_restart(struct work_struct *work) switch (ar->state) { case ATH10K_STATE_ON: ar->state = ATH10K_STATE_RESTARTING; + ath10k_warn("core-restart, going to state RESTARTING from ON\n"); del_timer_sync(&ar->scan.timeout); ath10k_reset_scan((unsigned long)ar); ieee80211_restart_hw(ar->hw); @@ -713,10 +714,11 @@ static void ath10k_core_restart(struct work_struct *work) /* hw restart might be requested from multiple places */ break; case ATH10K_STATE_RESTARTED: - ar->state = ATH10K_STATE_WEDGED; /* fall through */ case ATH10K_STATE_WEDGED: - ath10k_warn("device is wedged, will not restart\n"); + ath10k_warn("device is wedged, will not restart (state %d)\n", + ar->state); + ar->state = ATH10K_STATE_WEDGED; break; } -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html