diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-04-03 14:41:07 -0400 |
---|---|---|
committer | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2012-04-23 17:29:40 -0400 |
commit | 586aed966049c3248db334d6ab9b317e25be7b14 (patch) | |
tree | ed1620d78f7133011576718a3a73ff188976de3a /drivers/net/wireless/iwlwifi/iwl-1000.c | |
parent | f1f80a8c3b4cfd40eb20a52fd86f0ff9faffdec0 (diff) |
iwlwifi: move eeprom versions to HW files
The hardware files belong to the core PCI
functionality, but the eeprom header file
mixes higher-level functionality and the
defines, so move out the specific defines
and put them into the appropriate HW files
instead.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-1000.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-1000.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-1000.c b/drivers/net/wireless/iwlwifi/iwl-1000.c index e9006078f4e2..42de5aa45323 100644 --- a/drivers/net/wireless/iwlwifi/iwl-1000.c +++ b/drivers/net/wireless/iwlwifi/iwl-1000.c | |||
@@ -42,6 +42,10 @@ | |||
42 | #define IWL1000_UCODE_API_MIN 1 | 42 | #define IWL1000_UCODE_API_MIN 1 |
43 | #define IWL100_UCODE_API_MIN 5 | 43 | #define IWL100_UCODE_API_MIN 5 |
44 | 44 | ||
45 | /* EEPROM version */ | ||
46 | #define EEPROM_1000_TX_POWER_VERSION (4) | ||
47 | #define EEPROM_1000_EEPROM_VERSION (0x15C) | ||
48 | |||
45 | #define IWL1000_FW_PRE "iwlwifi-1000-" | 49 | #define IWL1000_FW_PRE "iwlwifi-1000-" |
46 | #define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode" | 50 | #define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode" |
47 | 51 | ||