diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-04-09 20:34:19 +0400 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-04-13 23:23:17 +0400 |
commit | f0d5bb07a3765e086e6ff5e397b13616e6883d04 (patch) | |
tree | 45eabc519a153c1a1f5ade9c2fe65c281833d3c0 /drivers/net | |
parent | e820c2da7ee3d9745bcac54d8d8e92b4a2b0eeb8 (diff) | |
download | linux-f0d5bb07a3765e086e6ff5e397b13616e6883d04.tar.xz |
iwlwifi: 7000: bump firmware API version to 9
Also warn if an older firmware is loaded.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-7000.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-7000.c b/drivers/net/wireless/iwlwifi/iwl-7000.c index 3ab21efaf1f2..2c9b6fb45603 100644 --- a/drivers/net/wireless/iwlwifi/iwl-7000.c +++ b/drivers/net/wireless/iwlwifi/iwl-7000.c @@ -67,12 +67,12 @@ #include "iwl-agn-hw.h" /* Highest firmware API version supported */ -#define IWL7260_UCODE_API_MAX 8 -#define IWL3160_UCODE_API_MAX 8 +#define IWL7260_UCODE_API_MAX 9 +#define IWL3160_UCODE_API_MAX 9 /* Oldest version we won't warn about */ -#define IWL7260_UCODE_API_OK 8 -#define IWL3160_UCODE_API_OK 8 +#define IWL7260_UCODE_API_OK 9 +#define IWL3160_UCODE_API_OK 9 /* Lowest firmware API version supported */ #define IWL7260_UCODE_API_MIN 8 |