diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-eeprom.h')
| -rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-eeprom.h | 17 | 
1 files changed, 11 insertions, 6 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-eeprom.h b/drivers/net/wireless/iwlwifi/iwl-eeprom.h index 95aa202c85e..a4772aff51f 100644 --- a/drivers/net/wireless/iwlwifi/iwl-eeprom.h +++ b/drivers/net/wireless/iwlwifi/iwl-eeprom.h @@ -118,7 +118,7 @@ enum {  struct iwl_eeprom_channel {  	u8 flags;		/* EEPROM_CHANNEL_* flags copied from EEPROM */  	s8 max_power_avg;	/* max power (dBm) on this chnl, limit 31 */ -} __attribute__ ((packed)); +} __packed;  /**   * iwl_eeprom_enhanced_txpwr structure @@ -144,7 +144,7 @@ struct iwl_eeprom_enhanced_txpwr {  	s8 reserved;  	s8 mimo2_max;  	s8 mimo3_max; -} __attribute__ ((packed)); +} __packed;  /* 3945 Specific */  #define EEPROM_3945_EEPROM_VERSION	(0x2f) @@ -276,6 +276,10 @@ struct iwl_eeprom_enhanced_txpwr {  #define EEPROM_6050_TX_POWER_VERSION    (4)  #define EEPROM_6050_EEPROM_VERSION	(0x532) +/* 6x50g2 Specific */ +#define EEPROM_6050G2_TX_POWER_VERSION    (6) +#define EEPROM_6050G2_EEPROM_VERSION	(0x553) +  /* 6x00g2 Specific */  #define EEPROM_6000G2_TX_POWER_VERSION    (6)  #define EEPROM_6000G2_EEPROM_VERSION	(0x709) @@ -312,7 +316,7 @@ struct iwl_eeprom_calib_measure {  	u8 gain_idx;		/* Index into gain table */  	u8 actual_pow;		/* Measured RF output power, half-dBm */  	s8 pa_det;		/* Power amp detector level (not used) */ -} __attribute__ ((packed)); +} __packed;  /* @@ -328,7 +332,7 @@ struct iwl_eeprom_calib_ch_info {  	struct iwl_eeprom_calib_measure  		measurements[EEPROM_TX_POWER_TX_CHAINS]  			[EEPROM_TX_POWER_MEASUREMENTS]; -} __attribute__ ((packed)); +} __packed;  /*   * txpower subband info. @@ -345,7 +349,7 @@ struct iwl_eeprom_calib_subband_info {  	u8 ch_to;	/* channel number of highest channel in subband */  	struct iwl_eeprom_calib_ch_info ch1;  	struct iwl_eeprom_calib_ch_info ch2; -} __attribute__ ((packed)); +} __packed;  /* @@ -374,7 +378,7 @@ struct iwl_eeprom_calib_info {  	__le16 voltage;		/* signed */  	struct iwl_eeprom_calib_subband_info  		band_info[EEPROM_TX_POWER_BANDS]; -} __attribute__ ((packed)); +} __packed;  #define ADDRESS_MSK                 0x0000FFFF @@ -398,6 +402,7 @@ struct iwl_eeprom_calib_info {  #define EEPROM_WOWLAN_MODE                  (2*0x47)	/* 2  bytes */  #define EEPROM_RADIO_CONFIG                 (2*0x48)	/* 2  bytes */  #define EEPROM_3945_M_VERSION               (2*0x4A)	/* 1  bytes */ +#define EEPROM_NUM_MAC_ADDRESS              (2*0x4C)	/* 2  bytes */  /* The following masks are to be applied on EEPROM_RADIO_CONFIG */  #define EEPROM_RF_CFG_TYPE_MSK(x)   (x & 0x3)         /* bits 0-1   */  |