diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-25 01:51:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-25 01:51:49 +0000 |
commit | 25cf1bc5e4cf089158ca9a7a9e2a4d7ee3781953 (patch) | |
tree | cfe3afa9d57867b61efa1883c69e29625ec3a828 /package/madwifi | |
parent | b364aae25446830875836ba3ff0ced6aa8365869 (diff) | |
download | upstream-25cf1bc5e4cf089158ca9a7a9e2a4d7ee3781953.tar.gz upstream-25cf1bc5e4cf089158ca9a7a9e2a4d7ee3781953.tar.bz2 upstream-25cf1bc5e4cf089158ca9a7a9e2a4d7ee3781953.zip |
oops. committed an old version of the patch
SVN-Revision: 15033
Diffstat (limited to 'package/madwifi')
-rw-r--r-- | package/madwifi/patches/414-txpower.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/madwifi/patches/414-txpower.patch b/package/madwifi/patches/414-txpower.patch index 3e7e315d11..9d9e60b2e8 100644 --- a/package/madwifi/patches/414-txpower.patch +++ b/package/madwifi/patches/414-txpower.patch @@ -63,7 +63,7 @@ + power = ic->ic_max_txpower; + if (ic->ic_bsschan && (ic->ic_bsschan != IEEE80211_CHAN_ANYC)) -+ power = min(power, ic->ic_bsschan->ic_maxpower); ++ power = min(power, (u_int16_t) ic->ic_bsschan->ic_maxpower); + /* txpower (128 values, but will print out only IW_MAX_TXPOWER) */ - range->num_txpower = (ic->ic_txpowlimit >= 8) ? IW_MAX_TXPOWER : ic->ic_txpowlimit; @@ -136,8 +136,8 @@ + struct ieee80211_channel *c; + u_int16_t txp = ic->ic_max_txpower; + -+ if (ic->ic_bsschan && (ic->ic_bsschan != IEEE80211_CHAN_ANYC)) -+ txp = min(txp, ic->ic_bsschan->ic_maxpower); ++ if (ic->ic_bsschan && (ic->ic_bsschan != IEEE80211_CHAN_ANYC)) { ++ txp = min(txp, (u16) ic->ic_bsschan->ic_maxpower); + } else if (ic->ic_cur_txpower > 0) { + txp = min(txp, ic->ic_cur_txpower); + } |