diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-01-04 14:08:08 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-01-04 14:08:08 +0000 |
commit | beeee37f8382a126b2181dc6ee40014fa1760718 (patch) | |
tree | 936c295287aa2e592834d4c636219f77c2284df6 /package/network/utils/iwinfo/src | |
parent | 0910d16207802a575aac39c7e6de9964129702a3 (diff) |
iwinfo: don't use the txpower value from debugfs for now, it does not match the values reported via wext
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35007 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/utils/iwinfo/src')
-rw-r--r-- | package/network/utils/iwinfo/src/iwinfo_nl80211.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/network/utils/iwinfo/src/iwinfo_nl80211.c b/package/network/utils/iwinfo/src/iwinfo_nl80211.c index ae75e6d86c..819845ad1d 100644 --- a/package/network/utils/iwinfo/src/iwinfo_nl80211.c +++ b/package/network/utils/iwinfo/src/iwinfo_nl80211.c @@ -993,6 +993,7 @@ int nl80211_get_channel(const char *ifname, int *buf) int nl80211_get_txpower(const char *ifname, int *buf) { +#if 0 char *res; char path[PATH_MAX]; @@ -1002,6 +1003,7 @@ int nl80211_get_txpower(const char *ifname, int *buf) if ((*buf = nl80211_readint(path)) > -1) return 0; +#endif return wext_get_txpower(ifname, buf); } |