diff options
author | Michael Buesch <mbuesch@freenet.de> | 2006-03-13 13:27:34 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-03-27 11:19:37 -0500 |
commit | e9357c056c5e62516f0044e60591d41f00ca7cfa (patch) | |
tree | a5dc842a43db15403207f1d763df008fb43cb8e6 /drivers/net/wireless/bcm43xx/bcm43xx_ilt.c | |
parent | aae3778176ec7a57b1c4f539b7252acfd7d99a1b (diff) |
[PATCH] bcm43xx: reduce the size of bcm43xx_private by removing unneeded members.
Signed-off-by: Michael Buesch <mbuesch@freenet.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/bcm43xx/bcm43xx_ilt.c')
-rw-r--r-- | drivers/net/wireless/bcm43xx/bcm43xx_ilt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/bcm43xx/bcm43xx_ilt.c b/drivers/net/wireless/bcm43xx/bcm43xx_ilt.c index 865ed5c33613..ad8e569d1faf 100644 --- a/drivers/net/wireless/bcm43xx/bcm43xx_ilt.c +++ b/drivers/net/wireless/bcm43xx/bcm43xx_ilt.c | |||
@@ -314,7 +314,7 @@ const u16 bcm43xx_ilt_sigmasqr2[BCM43xx_ILT_SIGMASQR_SIZE] = { | |||
314 | 314 | ||
315 | void bcm43xx_ilt_write(struct bcm43xx_private *bcm, u16 offset, u16 val) | 315 | void bcm43xx_ilt_write(struct bcm43xx_private *bcm, u16 offset, u16 val) |
316 | { | 316 | { |
317 | if (bcm->current_core->phy->type == BCM43xx_PHYTYPE_A) { | 317 | if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_A) { |
318 | bcm43xx_phy_write(bcm, BCM43xx_PHY_ILT_A_CTRL, offset); | 318 | bcm43xx_phy_write(bcm, BCM43xx_PHY_ILT_A_CTRL, offset); |
319 | mmiowb(); | 319 | mmiowb(); |
320 | bcm43xx_phy_write(bcm, BCM43xx_PHY_ILT_A_DATA1, val); | 320 | bcm43xx_phy_write(bcm, BCM43xx_PHY_ILT_A_DATA1, val); |
@@ -327,7 +327,7 @@ void bcm43xx_ilt_write(struct bcm43xx_private *bcm, u16 offset, u16 val) | |||
327 | 327 | ||
328 | u16 bcm43xx_ilt_read(struct bcm43xx_private *bcm, u16 offset) | 328 | u16 bcm43xx_ilt_read(struct bcm43xx_private *bcm, u16 offset) |
329 | { | 329 | { |
330 | if (bcm->current_core->phy->type == BCM43xx_PHYTYPE_A) { | 330 | if (bcm43xx_current_phy(bcm)->type == BCM43xx_PHYTYPE_A) { |
331 | bcm43xx_phy_write(bcm, BCM43xx_PHY_ILT_A_CTRL, offset); | 331 | bcm43xx_phy_write(bcm, BCM43xx_PHY_ILT_A_CTRL, offset); |
332 | return bcm43xx_phy_read(bcm, BCM43xx_PHY_ILT_A_DATA1); | 332 | return bcm43xx_phy_read(bcm, BCM43xx_PHY_ILT_A_DATA1); |
333 | } else { | 333 | } else { |