mirror of https://gitee.com/openkylin/linux.git
[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: Michael Wu <flamingice@sourmilk.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
e8fdeca241
commit
52fb24cd83
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue