diff options
author | Amitkumar Karwar <akarwar@marvell.com> | 2012-04-09 23:06:55 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-04-12 15:10:29 -0400 |
commit | 5e218b7ab86ed6eb3d1432146c49cbb8733414d0 (patch) | |
tree | a1d0601fb31d7d9fd22ad023023e667552e81e6b /drivers/net/wireless/mwifiex/debugfs.c | |
parent | 9e04a7c6d45fd70be55fcb48ec49f55dad9928f7 (diff) |
mwifiex: display correct country information in debugfs "info"
Use "priv->country_code" string to display country information in
debugfs command "info" instead of "adapter->region_code".
"adapter->region_code" contains default region code got from FW while
initialization, whereas "priv->country_code" is updated in reg_notifier
handler whenever there is a change in regulatory domain.
Signed-off-by: Amitkumar Karwar <akarwar@marvell.com>
Signed-off-by: Kiran Divekar <dkiran@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex/debugfs.c')
-rw-r--r-- | drivers/net/wireless/mwifiex/debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/mwifiex/debugfs.c b/drivers/net/wireless/mwifiex/debugfs.c index 1a845074c52a..a870b5885c09 100644 --- a/drivers/net/wireless/mwifiex/debugfs.c +++ b/drivers/net/wireless/mwifiex/debugfs.c | |||
@@ -212,7 +212,7 @@ mwifiex_info_read(struct file *file, char __user *ubuf, | |||
212 | p += sprintf(p, "essid=\"%s\"\n", info.ssid.ssid); | 212 | p += sprintf(p, "essid=\"%s\"\n", info.ssid.ssid); |
213 | p += sprintf(p, "bssid=\"%pM\"\n", info.bssid); | 213 | p += sprintf(p, "bssid=\"%pM\"\n", info.bssid); |
214 | p += sprintf(p, "channel=\"%d\"\n", (int) info.bss_chan); | 214 | p += sprintf(p, "channel=\"%d\"\n", (int) info.bss_chan); |
215 | p += sprintf(p, "region_code = \"%02x\"\n", info.region_code); | 215 | p += sprintf(p, "country_code = \"%s\"\n", info.country_code); |
216 | 216 | ||
217 | netdev_for_each_mc_addr(ha, netdev) | 217 | netdev_for_each_mc_addr(ha, netdev) |
218 | p += sprintf(p, "multicast_address[%d]=\"%pM\"\n", | 218 | p += sprintf(p, "multicast_address[%d]=\"%pM\"\n", |