diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-02-22 13:41:50 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-02-22 13:41:50 +0000 |
commit | f0647cc9dd7b3b9c340210ab21cc50cf8e71978c (patch) | |
tree | 94350f52512551224921e194d5d8c942585af318 /package/iwinfo/src/iwinfo_wl.c | |
parent | 4efc5c7d6829f64c58f17a842937c48df981fa70 (diff) |
[PATCH] Allow full 250mw (24dBm) on WRT54GL and related with wl legacy driver on iwinfo
Signed-off-by: Hanno Schupp <hanno.schupp@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30684 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iwinfo/src/iwinfo_wl.c')
-rw-r--r-- | package/iwinfo/src/iwinfo_wl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/iwinfo/src/iwinfo_wl.c b/package/iwinfo/src/iwinfo_wl.c index 16202f6290..3acfff4aad 100644 --- a/package/iwinfo/src/iwinfo_wl.c +++ b/package/iwinfo/src/iwinfo_wl.c @@ -489,8 +489,8 @@ int wl_get_assoclist(const char *ifname, char *buf, int *len) int wl_get_txpwrlist(const char *ifname, char *buf, int *len) { struct iwinfo_txpwrlist_entry entry; - uint8_t dbm[8] = { 0, 6, 8, 10, 12, 14, 16, 18 }; - uint8_t mw[8] = { 1, 3, 6, 10, 15, 25, 39, 63 }; + uint8_t dbm[8] = { 0, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24 }; + uint8_t mw[8] = { 1, 3, 6, 10, 15, 25, 39, 63, 100, 158, 251 }; int i; for (i = 0; i < 8; i++) |