aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43/lo.c
diff options
context:
space:
mode:
authorJohn Daiker <daikerjohn@gmail.com>2009-02-24 05:16:42 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-02-27 14:53:04 -0500
commit99da185a72ba685a5aaf49dff6a5fe83885112e4 (patch)
tree28a45135872ca5cb0b4f4e37967d361f408231c3 /drivers/net/wireless/b43/lo.c
parentddcb5c78e8dcb470caec2049c2f400651f1710e4 (diff)
b43: checkpatch.pl cleanups
Keeping this one simple. Changing a few "foo * bar" to "foo *bar" Removes 22 checkpatch.pl errors, with no introduced warnings. Signed-off-by: John Daiker <daikerjohn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/lo.c')
-rw-r--r--drivers/net/wireless/b43/lo.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/wireless/b43/lo.c b/drivers/net/wireless/b43/lo.c
index 2a4e2b02faf9..22d0fbd83a62 100644
--- a/drivers/net/wireless/b43/lo.c
+++ b/drivers/net/wireless/b43/lo.c
@@ -36,8 +36,8 @@
36#include <linux/sched.h> 36#include <linux/sched.h>
37 37
38 38
39static struct b43_lo_calib * b43_find_lo_calib(struct b43_txpower_lo_control *lo, 39static struct b43_lo_calib *b43_find_lo_calib(struct b43_txpower_lo_control *lo,
40 const struct b43_bbatt *bbatt, 40 const struct b43_bbatt *bbatt,
41 const struct b43_rfatt *rfatt) 41 const struct b43_rfatt *rfatt)
42{ 42{
43 struct b43_lo_calib *c; 43 struct b43_lo_calib *c;
@@ -138,7 +138,7 @@ static u16 lo_measure_feedthrough(struct b43_wldev *dev,
138 * "pad_mix_gain" is the PAD Mixer Gain. 138 * "pad_mix_gain" is the PAD Mixer Gain.
139 */ 139 */
140static u16 lo_txctl_register_table(struct b43_wldev *dev, 140static u16 lo_txctl_register_table(struct b43_wldev *dev,
141 u16 * value, u16 * pad_mix_gain) 141 u16 *value, u16 *pad_mix_gain)
142{ 142{
143 struct b43_phy *phy = &dev->phy; 143 struct b43_phy *phy = &dev->phy;
144 u16 reg, v, padmix; 144 u16 reg, v, padmix;
@@ -731,9 +731,9 @@ static void lo_probe_loctls_statemachine(struct b43_wldev *dev,
731} 731}
732 732
733static 733static
734struct b43_lo_calib * b43_calibrate_lo_setting(struct b43_wldev *dev, 734struct b43_lo_calib *b43_calibrate_lo_setting(struct b43_wldev *dev,
735 const struct b43_bbatt *bbatt, 735 const struct b43_bbatt *bbatt,
736 const struct b43_rfatt *rfatt) 736 const struct b43_rfatt *rfatt)
737{ 737{
738 struct b43_phy *phy = &dev->phy; 738 struct b43_phy *phy = &dev->phy;
739 struct b43_phy_g *gphy = phy->g; 739 struct b43_phy_g *gphy = phy->g;
@@ -797,9 +797,9 @@ struct b43_lo_calib * b43_calibrate_lo_setting(struct b43_wldev *dev,
797/* Get a calibrated LO setting for the given attenuation values. 797/* Get a calibrated LO setting for the given attenuation values.
798 * Might return a NULL pointer under OOM! */ 798 * Might return a NULL pointer under OOM! */
799static 799static
800struct b43_lo_calib * b43_get_calib_lo_settings(struct b43_wldev *dev, 800struct b43_lo_calib *b43_get_calib_lo_settings(struct b43_wldev *dev,
801 const struct b43_bbatt *bbatt, 801 const struct b43_bbatt *bbatt,
802 const struct b43_rfatt *rfatt) 802 const struct b43_rfatt *rfatt)
803{ 803{
804 struct b43_txpower_lo_control *lo = dev->phy.g->lo_control; 804 struct b43_txpower_lo_control *lo = dev->phy.g->lo_control;
805 struct b43_lo_calib *c; 805 struct b43_lo_calib *c;