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

Commit 52fb24cd authored by Michael Wu's avatar Michael Wu Committed by John W. Linville
Browse files

[PATCH] mac80211: always set carrier status on open



ieee80211_open should always set the carrier status since we may have set
it to off before.

Signed-off-by: default avatarMichael Wu <flamingice@sourmilk.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e8fdeca2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2474,6 +2474,8 @@ static int ieee80211_open(struct net_device *dev)
	if (sdata->type == IEEE80211_IF_TYPE_STA &&
	    !local->user_space_mlme)
		netif_carrier_off(dev);
	else
		netif_carrier_on(dev);

	netif_start_queue(dev);
	return 0;