Staging: rtl8192u: suspect code indent for conditional statment

This is a patch to correct an improperly indented block of code in
ieee80211_softmac_wx.c

Signed-off-by: Mike Dupuis <mike.dupuis.0@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mike Dupuis 2015-09-13 22:42:49 -08:00 коммит произвёл Greg Kroah-Hartman
Родитель 96d6a31837
Коммит e9bcffdc77
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -72,9 +72,8 @@ int ieee80211_wx_set_freq(struct ieee80211_device *ieee, struct iw_request_info
if (ieee->iw_mode == IW_MODE_ADHOC || ieee->iw_mode == IW_MODE_MASTER)
if (ieee->state == IEEE80211_LINKED) {
ieee80211_stop_send_beacons(ieee);
ieee80211_start_send_beacons(ieee);
ieee80211_stop_send_beacons(ieee);
ieee80211_start_send_beacons(ieee);
}
}