mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 22:28:00 +00:00
b43: Fix phy_g.c compiler warning
Fix compile warning for non-debug builds: drivers/net/wireless/b43/phy_g.c: In function ‘b43_gphy_op_recalc_txpower’: drivers/net/wireless/b43/phy_g.c:3195: warning: unused variable ‘dbm’ Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
e874e65855
commit
dff8ccd9f5
1 changed files with 3 additions and 0 deletions
|
@ -3191,6 +3191,7 @@ static enum b43_txpwr_result b43_gphy_op_recalc_txpower(struct b43_wldev *dev,
|
||||||
* Baseband attennuation. Subtract it. */
|
* Baseband attennuation. Subtract it. */
|
||||||
bbatt_delta -= 4 * rfatt_delta;
|
bbatt_delta -= 4 * rfatt_delta;
|
||||||
|
|
||||||
|
#if B43_DEBUG
|
||||||
if (b43_debug(dev, B43_DBG_XMITPOWER)) {
|
if (b43_debug(dev, B43_DBG_XMITPOWER)) {
|
||||||
int dbm = pwr_adjust < 0 ? -pwr_adjust : pwr_adjust;
|
int dbm = pwr_adjust < 0 ? -pwr_adjust : pwr_adjust;
|
||||||
b43dbg(dev->wl,
|
b43dbg(dev->wl,
|
||||||
|
@ -3199,6 +3200,8 @@ static enum b43_txpwr_result b43_gphy_op_recalc_txpower(struct b43_wldev *dev,
|
||||||
(pwr_adjust < 0 ? "-" : ""), Q52_ARG(dbm),
|
(pwr_adjust < 0 ? "-" : ""), Q52_ARG(dbm),
|
||||||
bbatt_delta, rfatt_delta);
|
bbatt_delta, rfatt_delta);
|
||||||
}
|
}
|
||||||
|
#endif /* DEBUG */
|
||||||
|
|
||||||
/* So do we finally need to adjust something in hardware? */
|
/* So do we finally need to adjust something in hardware? */
|
||||||
if ((rfatt_delta == 0) && (bbatt_delta == 0))
|
if ((rfatt_delta == 0) && (bbatt_delta == 0))
|
||||||
goto no_adjustment_needed;
|
goto no_adjustment_needed;
|
||||||
|
|
Loading…
Add table
Reference in a new issue