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

Commit bffb7db2 authored by Geliang Tang's avatar Geliang Tang Committed by Kalle Valo
Browse files

ath6kl: drop unlikely behind WARN_ON()



WARN_ON() already contain an unlikely compiler flag. Drop it.

Signed-off-by: default avatarGeliang Tang <geliangtang@163.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 706452b0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2217,7 +2217,7 @@ static int ath6kl_wow_suspend(struct ath6kl *ar, struct cfg80211_wowlan *wow)

	/* enter / leave wow suspend on first vif always */
	first_vif = ath6kl_vif_first(ar);
	if (WARN_ON(unlikely(!first_vif)) ||
	if (WARN_ON(!first_vif) ||
	    !ath6kl_cfg80211_ready(first_vif))
		return -EIO;

@@ -2297,7 +2297,7 @@ static int ath6kl_wow_resume(struct ath6kl *ar)
	int ret;

	vif = ath6kl_vif_first(ar);
	if (WARN_ON(unlikely(!vif)) ||
	if (WARN_ON(!vif) ||
	    !ath6kl_cfg80211_ready(vif))
		return -EIO;