aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43/phy_lp.h
diff options
context:
space:
mode:
authorGábor Stefanik <netrolller.3d@gmail.com>2009-08-18 13:18:13 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-08-20 11:36:07 -0400
commit5904d2067680e9bb73a4816fa6b9eec49355c9c8 (patch)
tree8bb02d8a1e824ace7892c2e6a63758a989185f79 /drivers/net/wireless/b43/phy_lp.h
parent16a832e785820aa199641c77b2d6f4a443d2ec46 (diff)
b43: LP-PHY: Implement spec updates and remove resolved FIXMEs
Larry has started re-checking all current routines against a new version of the Broadcom MIPS driver. This patch implements the first round of changes he documented on the specs wiki. Also remove a few FIXMEs regarding missing initial values for variables with dynamic initial values where reading the values has been implemented. Signed-off-by: Gábor Stefanik <netrolller.3d@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/phy_lp.h')
-rw-r--r--drivers/net/wireless/b43/phy_lp.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/drivers/net/wireless/b43/phy_lp.h b/drivers/net/wireless/b43/phy_lp.h
index 99cb0386e345..e158d1f66c0e 100644
--- a/drivers/net/wireless/b43/phy_lp.h
+++ b/drivers/net/wireless/b43/phy_lp.h
@@ -825,11 +825,11 @@ struct b43_phy_lp {
825 enum b43_lpphy_txpctl_mode txpctl_mode; 825 enum b43_lpphy_txpctl_mode txpctl_mode;
826 826
827 /* Transmit isolation medium band */ 827 /* Transmit isolation medium band */
828 u8 tx_isolation_med_band; /* FIXME initial value? */ 828 u8 tx_isolation_med_band;
829 /* Transmit isolation low band */ 829 /* Transmit isolation low band */
830 u8 tx_isolation_low_band; /* FIXME initial value? */ 830 u8 tx_isolation_low_band;
831 /* Transmit isolation high band */ 831 /* Transmit isolation high band */
832 u8 tx_isolation_hi_band; /* FIXME initial value? */ 832 u8 tx_isolation_hi_band;
833 833
834 /* Max transmit power medium band */ 834 /* Max transmit power medium band */
835 u16 max_tx_pwr_med_band; 835 u16 max_tx_pwr_med_band;
@@ -848,7 +848,7 @@ struct b43_phy_lp {
848 s16 txpa[3], txpal[3], txpah[3]; 848 s16 txpa[3], txpal[3], txpah[3];
849 849
850 /* Receive power offset */ 850 /* Receive power offset */
851 u8 rx_pwr_offset; /* FIXME initial value? */ 851 u8 rx_pwr_offset;
852 852
853 /* TSSI transmit count */ 853 /* TSSI transmit count */
854 u16 tssi_tx_count; 854 u16 tssi_tx_count;
@@ -864,16 +864,16 @@ struct b43_phy_lp {
864 s8 tx_pwr_idx_over; /* FIXME initial value? */ 864 s8 tx_pwr_idx_over; /* FIXME initial value? */
865 865
866 /* RSSI vf */ 866 /* RSSI vf */
867 u8 rssi_vf; /* FIXME initial value? */ 867 u8 rssi_vf;
868 /* RSSI vc */ 868 /* RSSI vc */
869 u8 rssi_vc; /* FIXME initial value? */ 869 u8 rssi_vc;
870 /* RSSI gs */ 870 /* RSSI gs */
871 u8 rssi_gs; /* FIXME initial value? */ 871 u8 rssi_gs;
872 872
873 /* RC cap */ 873 /* RC cap */
874 u8 rc_cap; /* FIXME initial value? */ 874 u8 rc_cap; /* FIXME initial value? */
875 /* BX arch */ 875 /* BX arch */
876 u8 bx_arch; /* FIXME initial value? */ 876 u8 bx_arch;
877 877
878 /* Full calibration channel */ 878 /* Full calibration channel */
879 u8 full_calib_chan; /* FIXME initial value? */ 879 u8 full_calib_chan; /* FIXME initial value? */
@@ -885,6 +885,8 @@ struct b43_phy_lp {
885 /* Used for "Save/Restore Dig Filt State" */ 885 /* Used for "Save/Restore Dig Filt State" */
886 u16 dig_flt_state[9]; 886 u16 dig_flt_state[9];
887 887
888 bool crs_usr_disable, crs_sys_disable;
889
888 unsigned int pdiv; 890 unsigned int pdiv;
889}; 891};
890 892