summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiaochang Duan <xduan@qca.qualcomm.com>2014-04-08 23:11:55 -0700
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-04-12 10:53:18 -0700
commitf9467f472fc627689da04f649745d01ca0ab174c (patch)
tree580a034c8d288a84f5e7513684cb2c906d77308d
parent3bb9b8928e3acf9d2e30532bc9d4c8dc08879b06 (diff)
wlan: add channel 144 to freq_chan_map
Patch adds channel 144 freq to freq_chan_map, with out this "iwpriv wlan0 chan" would report channel 144 freq as '0' as below. ... Channel 140 : 5.7 GHz Channel 144 : 0 Channel 149 : 5.745 GHz ... Change-Id: I9e805a36c62b75df01529c6c8c2355433341163e CRs-Fixed: 645597
-rw-r--r--CORE/HDD/src/wlan_hdd_wext.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/CORE/HDD/src/wlan_hdd_wext.c b/CORE/HDD/src/wlan_hdd_wext.c
index 89e40bf4c6aa..cb64b3f5f095 100644
--- a/CORE/HDD/src/wlan_hdd_wext.c
+++ b/CORE/HDD/src/wlan_hdd_wext.c
@@ -135,7 +135,8 @@ static const hdd_freq_chan_map_t freq_chan_map[] = { {2412, 1}, {2417, 2},
{5240, 48}, {5260, 52}, {5280, 56}, {5300, 60}, {5320, 64}, {5500, 100},
{5520, 104}, {5540, 108}, {5560, 112}, {5580, 116}, {5600, 120},
{5620, 124}, {5640, 128}, {5660, 132}, {5680, 136}, {5700, 140},
- {5745, 149}, {5765, 153}, {5785, 157}, {5805, 161}, {5825, 165} };
+ {5720, 144}, {5745, 149}, {5765, 153}, {5785, 157}, {5805, 161},
+ {5825, 165} };
#define FREQ_CHAN_MAP_TABLE_SIZE (sizeof(freq_chan_map)/sizeof(freq_chan_map[0]))