OSDN Git Service

rsi: Using band from rsi_common to fill in ieee80211_rx_status
authorJahnavi Meher <jahnavi.meher@gmail.com>
Mon, 16 Jun 2014 14:10:55 +0000 (19:40 +0530)
committerJohn W. Linville <linville@tuxdriver.com>
Thu, 19 Jun 2014 19:49:21 +0000 (15:49 -0400)
Filling in band from common->band.

Signed-off-by: Jahnavi Meher <jahnavi.meher@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/rsi/rsi_91x_mac80211.c

index a1bdea1..45bdb99 100644 (file)
@@ -770,10 +770,7 @@ static void rsi_fill_rx_status(struct ieee80211_hw *hw,
 
        rxs->signal = -(rssi);
 
-       if (channel <= 14)
-               rxs->band = IEEE80211_BAND_2GHZ;
-       else
-               rxs->band = IEEE80211_BAND_5GHZ;
+       rxs->band = common->band;
 
        freq = ieee80211_channel_to_frequency(channel, rxs->band);