diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-04 22:04:00 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-12-04 22:04:00 +0000 |
commit | d3d91930d167026e95d3e792b0a188c24555c809 (patch) | |
tree | cea2242fa9fecc0456dbd5ac3d2db6d2bf06684c /package/iwinfo | |
parent | 3a9d303059a1689ad9ff856e430fef04bd3fb7f5 (diff) | |
download | upstream-d3d91930d167026e95d3e792b0a188c24555c809.tar.gz upstream-d3d91930d167026e95d3e792b0a188c24555c809.tar.bz2 upstream-d3d91930d167026e95d3e792b0a188c24555c809.zip |
iwinfo: factor tx power offset into power level listing
SVN-Revision: 29430
Diffstat (limited to 'package/iwinfo')
-rw-r--r-- | package/iwinfo/src/iwinfo_cli.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/package/iwinfo/src/iwinfo_cli.c b/package/iwinfo/src/iwinfo_cli.c index d5be084bdb..4f8f5612c7 100644 --- a/package/iwinfo/src/iwinfo_cli.c +++ b/package/iwinfo/src/iwinfo_cli.c @@ -553,7 +553,7 @@ static void print_scanlist(const struct iwinfo_ops *iw, const char *ifname) static void print_txpwrlist(const struct iwinfo_ops *iw, const char *ifname) { - int len, pwr, i; + int len, pwr, off, i; char buf[IWINFO_BUFSIZE]; struct iwinfo_txpwrlist_entry *e; @@ -566,14 +566,17 @@ static void print_txpwrlist(const struct iwinfo_ops *iw, const char *ifname) if (iw->txpower(ifname, &pwr)) pwr = -1; + if (iw->txpower_offset(ifname, &off)) + off = 0; + for (i = 0; i < len; i += sizeof(struct iwinfo_txpwrlist_entry)) { e = (struct iwinfo_txpwrlist_entry *) &buf[i]; printf("%s%3d dBm (%4d mW)\n", (pwr == e->dbm) ? "*" : " ", - e->dbm, - e->mw); + e->dbm + off, + iwinfo_dbm2mw(e->dbm + off)); } } |