Skip to content

Commit

Permalink
b43: Fix LO calibration txctl reg value
Browse files Browse the repository at this point in the history
This patch expands the parenthesis in the txctl reg write
of the LO calibration to enforce precedence rules.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
RoelKluin authored and linvjw committed Feb 27, 2009
1 parent e05eac3 commit c493b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/b43/lo.c
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ struct b43_lo_calib * b43_calibrate_lo_setting(struct b43_wldev *dev,
| rfatt->att);
b43_radio_write16(dev, txctl_reg,
(b43_radio_read16(dev, txctl_reg) & ~txctl_value)
| (rfatt->with_padmix) ? txctl_value : 0);
| (rfatt->with_padmix ? txctl_value : 0));

max_rx_gain = rfatt->att * 2;
max_rx_gain += bbatt->att / 2;
Expand Down

0 comments on commit c493b01

Please sign in to comment.