diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2010-01-15 06:54:30 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-01-15 17:05:32 -0500 |
commit | 2a448bfc70f4fd4a54996d1c7a371ba28ec0568f (patch) | |
tree | 02b97d5f1a2283eb287329a676afd1c9e05747e5 /drivers/net/wireless/b43 | |
parent | 5b0ade3377b91da14410612b2051d66d26d31069 (diff) |
b43: N-PHY: add global variables to b43_phy_n struct
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43')
-rw-r--r-- | drivers/net/wireless/b43/phy_n.h | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/drivers/net/wireless/b43/phy_n.h b/drivers/net/wireless/b43/phy_n.h index c5084a4e30c..4572866756f 100644 --- a/drivers/net/wireless/b43/phy_n.h +++ b/drivers/net/wireless/b43/phy_n.h | |||
@@ -963,7 +963,49 @@ struct b43_phy_n_txpwrindex { | |||
963 | }; | 963 | }; |
964 | 964 | ||
965 | struct b43_phy_n { | 965 | struct b43_phy_n { |
966 | //TODO lots of missing stuff | 966 | u8 antsel_type; |
967 | u8 cal_orig_pwr_idx[2]; | ||
968 | u8 measure_hold; | ||
969 | u8 phyrxchain; | ||
970 | u8 perical; | ||
971 | u32 deaf_count; | ||
972 | u32 rxcalparams; | ||
973 | bool hang_avoid; | ||
974 | bool mute; | ||
975 | u16 papd_epsilon_offset[2]; | ||
976 | |||
977 | u8 mphase_cal_phase_id; | ||
978 | u16 mphase_txcal_cmdidx; | ||
979 | u16 mphase_txcal_numcmds; | ||
980 | u16 mphase_txcal_bestcoeffs[11]; | ||
981 | |||
982 | u8 txpwrctrl; | ||
983 | u16 txcal_bbmult; | ||
984 | u16 txiqlocal_bestc[11]; | ||
985 | bool txiqlocal_coeffsvalid; | ||
986 | struct b43_phy_n_txpwrindex txpwrindex[2]; | ||
987 | |||
988 | u16 tx_rx_cal_phy_saveregs[11]; | ||
989 | u16 tx_rx_cal_radio_saveregs[22]; | ||
990 | |||
991 | u16 rfctrl_intc1_save; | ||
992 | u16 rfctrl_intc2_save; | ||
993 | |||
994 | u16 classifier_state; | ||
995 | u16 clip_state[2]; | ||
996 | |||
997 | bool ipa2g_on; | ||
998 | u8 iqcal_chanspec_2G; | ||
999 | u8 rssical_chanspec_2G; | ||
1000 | |||
1001 | bool ipa5g_on; | ||
1002 | u8 iqcal_chanspec_5G; | ||
1003 | u8 rssical_chanspec_5G; | ||
1004 | |||
1005 | struct b43_phy_n_rssical_cache rssical_cache; | ||
1006 | struct b43_phy_n_cal_cache cal_cache; | ||
1007 | bool crsminpwr_adjusted; | ||
1008 | bool noisevars_adjusted; | ||
967 | }; | 1009 | }; |
968 | 1010 | ||
969 | 1011 | ||