summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/intel/iwlwifi/iwl-8000.c
diff options
context:
space:
mode:
authorJürg Billeter2016-10-10 18:30:01 +0200
committerLuca Coelho2017-01-23 11:55:32 +0100
commit7941c59e45f3b6d30e07375e9b6713427e0a9f98 (patch)
tree411e63e90556b10efac0321c282804840f946225 /drivers/net/wireless/intel/iwlwifi/iwl-8000.c
parentiwlwifi: fix kernel crash when unregistering thermal zone (diff)
downloadkernel-qcow2-linux-7941c59e45f3b6d30e07375e9b6713427e0a9f98.tar.gz
kernel-qcow2-linux-7941c59e45f3b6d30e07375e9b6713427e0a9f98.tar.xz
kernel-qcow2-linux-7941c59e45f3b6d30e07375e9b6713427e0a9f98.zip
iwlwifi: fix double hyphen in MODULE_FIRMWARE for 8000
Mistakenly, the driver is trying to load the 8000C firmware with an incorrect name (i.e. with two hyphens where there should be only one) and that fails. Fix that by removing the hyphen from the format macro. Fixes: e1ba684f762b ("iwlwifi: 8000: fix MODULE_FIRMWARE input") Signed-off-by: Jürg Billeter <j@bitron.ch> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/iwl-8000.c')
-rw-r--r--drivers/net/wireless/intel/iwlwifi/iwl-8000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-8000.c b/drivers/net/wireless/intel/iwlwifi/iwl-8000.c
index d02ca1491d16..8d3e53fac1da 100644
--- a/drivers/net/wireless/intel/iwlwifi/iwl-8000.c
+++ b/drivers/net/wireless/intel/iwlwifi/iwl-8000.c
@@ -91,7 +91,7 @@
#define IWL8000_FW_PRE "iwlwifi-8000C-"
#define IWL8000_MODULE_FIRMWARE(api) \
- IWL8000_FW_PRE "-" __stringify(api) ".ucode"
+ IWL8000_FW_PRE __stringify(api) ".ucode"
#define IWL8265_FW_PRE "iwlwifi-8265-"
#define IWL8265_MODULE_FIRMWARE(api) \