aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorWey-Yi Guy <wey-yi.w.guy@intel.com>2011-07-06 19:28:48 -0400
committerWey-Yi Guy <wey-yi.w.guy@intel.com>2011-07-16 10:37:42 -0400
commit7ed9af71684be2ee0366d0a30e8b0bda39126c3f (patch)
tree82ae0b7058f595e78137c27dfd9decf59906f8d5 /drivers/net
parente4305fe91f986aa3c56fbc18f0a8ecf05d65f26d (diff)
iwlagn: comments for iwl_cfg
Modify the comments for iwl_cfg, no functional changes Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-core.h17
1 files changed, 12 insertions, 5 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.h b/drivers/net/wireless/iwlwifi/iwl-core.h
index 28c21f4377c7..51873180c81a 100644
--- a/drivers/net/wireless/iwlwifi/iwl-core.h
+++ b/drivers/net/wireless/iwlwifi/iwl-core.h
@@ -189,11 +189,22 @@ struct iwl_ht_params {
189 189
190/** 190/**
191 * struct iwl_cfg 191 * struct iwl_cfg
192 * @name: Offical name of the device
192 * @fw_name_pre: Firmware filename prefix. The api version and extension 193 * @fw_name_pre: Firmware filename prefix. The api version and extension
193 * (.ucode) will be added to filename before loading from disk. The 194 * (.ucode) will be added to filename before loading from disk. The
194 * filename is constructed as fw_name_pre<api>.ucode. 195 * filename is constructed as fw_name_pre<api>.ucode.
195 * @ucode_api_max: Highest version of uCode API supported by driver. 196 * @ucode_api_max: Highest version of uCode API supported by driver.
196 * @ucode_api_min: Lowest version of uCode API supported by driver. 197 * @ucode_api_min: Lowest version of uCode API supported by driver.
198 * @valid_tx_ant: valid transmit antenna
199 * @valid_rx_ant: valid receive antenna
200 * @sku: sku information from EEPROM
201 * @eeprom_ver: EEPROM version
202 * @eeprom_calib_ver: EEPROM calibration version
203 * @lib: pointer to the lib ops
204 * @additional_nic_config: additional nic configuration
205 * @base_params: pointer to basic parameters
206 * @ht_params: point to ht patameters
207 * @bt_params: pointer to bt parameters
197 * @pa_type: used by 6000 series only to identify the type of Power Amplifier 208 * @pa_type: used by 6000 series only to identify the type of Power Amplifier
198 * @need_dc_calib: need to perform init dc calibration 209 * @need_dc_calib: need to perform init dc calibration
199 * @need_temp_offset_calib: need to perform temperature offset calibration 210 * @need_temp_offset_calib: need to perform temperature offset calibration
@@ -220,11 +231,7 @@ struct iwl_ht_params {
220 * } 231 * }
221 * 232 *
222 * The ideal usage of this infrastructure is to treat a new ucode API 233 * The ideal usage of this infrastructure is to treat a new ucode API
223 * release as a new hardware revision. That is, through utilizing the 234 * release as a new hardware revision.
224 * iwl_hcmd_utils_ops etc. we accommodate different command structures
225 * and flows between hardware versions (4965/5000) as well as their API
226 * versions.
227 *
228 */ 235 */
229struct iwl_cfg { 236struct iwl_cfg {
230 /* params specific to an individual device within a device family */ 237 /* params specific to an individual device within a device family */