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>
This commit is contained in:
committed by
John W. Linville
parent
16a832e785
commit
5904d20676
@@ -825,11 +825,11 @@ struct b43_phy_lp {
|
||||
enum b43_lpphy_txpctl_mode txpctl_mode;
|
||||
|
||||
/* Transmit isolation medium band */
|
||||
u8 tx_isolation_med_band; /* FIXME initial value? */
|
||||
u8 tx_isolation_med_band;
|
||||
/* Transmit isolation low band */
|
||||
u8 tx_isolation_low_band; /* FIXME initial value? */
|
||||
u8 tx_isolation_low_band;
|
||||
/* Transmit isolation high band */
|
||||
u8 tx_isolation_hi_band; /* FIXME initial value? */
|
||||
u8 tx_isolation_hi_band;
|
||||
|
||||
/* Max transmit power medium band */
|
||||
u16 max_tx_pwr_med_band;
|
||||
@@ -848,7 +848,7 @@ struct b43_phy_lp {
|
||||
s16 txpa[3], txpal[3], txpah[3];
|
||||
|
||||
/* Receive power offset */
|
||||
u8 rx_pwr_offset; /* FIXME initial value? */
|
||||
u8 rx_pwr_offset;
|
||||
|
||||
/* TSSI transmit count */
|
||||
u16 tssi_tx_count;
|
||||
@@ -864,16 +864,16 @@ struct b43_phy_lp {
|
||||
s8 tx_pwr_idx_over; /* FIXME initial value? */
|
||||
|
||||
/* RSSI vf */
|
||||
u8 rssi_vf; /* FIXME initial value? */
|
||||
u8 rssi_vf;
|
||||
/* RSSI vc */
|
||||
u8 rssi_vc; /* FIXME initial value? */
|
||||
u8 rssi_vc;
|
||||
/* RSSI gs */
|
||||
u8 rssi_gs; /* FIXME initial value? */
|
||||
u8 rssi_gs;
|
||||
|
||||
/* RC cap */
|
||||
u8 rc_cap; /* FIXME initial value? */
|
||||
/* BX arch */
|
||||
u8 bx_arch; /* FIXME initial value? */
|
||||
u8 bx_arch;
|
||||
|
||||
/* Full calibration channel */
|
||||
u8 full_calib_chan; /* FIXME initial value? */
|
||||
@@ -885,6 +885,8 @@ struct b43_phy_lp {
|
||||
/* Used for "Save/Restore Dig Filt State" */
|
||||
u16 dig_flt_state[9];
|
||||
|
||||
bool crs_usr_disable, crs_sys_disable;
|
||||
|
||||
unsigned int pdiv;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user