mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	iwlwifi: fix firmware names for 9000 and A000 series hw
iwlwifi 9000 and a0000 series hw contains an extra dash in firmware file name as seeen in modinfo output for kernel 4.14: firmware: iwlwifi-9260-th-b0-jf-b0--34.ucode firmware: iwlwifi-9260-th-a0-jf-a0--34.ucode firmware: iwlwifi-9000-pu-a0-jf-b0--34.ucode firmware: iwlwifi-9000-pu-a0-jf-a0--34.ucode firmware: iwlwifi-QuQnj-a0-hr-a0--34.ucode firmware: iwlwifi-QuQnj-a0-jf-b0--34.ucode firmware: iwlwifi-QuQnj-f0-hr-a0--34.ucode firmware: iwlwifi-Qu-a0-jf-b0--34.ucode firmware: iwlwifi-Qu-a0-hr-a0--34.ucode Fix that by dropping the extra adding of '"-"'. Signed-off-by: Thomas Backlund <tmb@mageia.org> Cc: stable@vger.kernel.org # 4.13 Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
This commit is contained in:
		
							parent
							
								
									dbc89253a7
								
							
						
					
					
						commit
						c2c48ddfc8
					
				| @ -82,11 +82,11 @@ | |||||||
| #define IWL9000B_MODULE_FIRMWARE(api) \ | #define IWL9000B_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL9000B_FW_PRE __stringify(api) ".ucode" | 	IWL9000B_FW_PRE __stringify(api) ".ucode" | ||||||
| #define IWL9000RFB_MODULE_FIRMWARE(api) \ | #define IWL9000RFB_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL9000RFB_FW_PRE "-" __stringify(api) ".ucode" | 	IWL9000RFB_FW_PRE __stringify(api) ".ucode" | ||||||
| #define IWL9260A_MODULE_FIRMWARE(api) \ | #define IWL9260A_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL9260A_FW_PRE "-" __stringify(api) ".ucode" | 	IWL9260A_FW_PRE __stringify(api) ".ucode" | ||||||
| #define IWL9260B_MODULE_FIRMWARE(api) \ | #define IWL9260B_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL9260B_FW_PRE "-" __stringify(api) ".ucode" | 	IWL9260B_FW_PRE __stringify(api) ".ucode" | ||||||
| 
 | 
 | ||||||
| #define NVM_HW_SECTION_NUM_FAMILY_9000		10 | #define NVM_HW_SECTION_NUM_FAMILY_9000		10 | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -80,15 +80,15 @@ | |||||||
| #define IWL_A000_HR_A0_FW_PRE	"iwlwifi-QuQnj-a0-hr-a0-" | #define IWL_A000_HR_A0_FW_PRE	"iwlwifi-QuQnj-a0-hr-a0-" | ||||||
| 
 | 
 | ||||||
| #define IWL_A000_HR_MODULE_FIRMWARE(api) \ | #define IWL_A000_HR_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL_A000_HR_FW_PRE "-" __stringify(api) ".ucode" | 	IWL_A000_HR_FW_PRE __stringify(api) ".ucode" | ||||||
| #define IWL_A000_JF_MODULE_FIRMWARE(api) \ | #define IWL_A000_JF_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL_A000_JF_FW_PRE "-" __stringify(api) ".ucode" | 	IWL_A000_JF_FW_PRE __stringify(api) ".ucode" | ||||||
| #define IWL_A000_HR_F0_QNJ_MODULE_FIRMWARE(api) \ | #define IWL_A000_HR_F0_QNJ_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL_A000_HR_F0_FW_PRE "-" __stringify(api) ".ucode" | 	IWL_A000_HR_F0_FW_PRE __stringify(api) ".ucode" | ||||||
| #define IWL_A000_JF_B0_QNJ_MODULE_FIRMWARE(api) \ | #define IWL_A000_JF_B0_QNJ_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL_A000_JF_B0_FW_PRE "-" __stringify(api) ".ucode" | 	IWL_A000_JF_B0_FW_PRE __stringify(api) ".ucode" | ||||||
| #define IWL_A000_HR_A0_QNJ_MODULE_FIRMWARE(api) \ | #define IWL_A000_HR_A0_QNJ_MODULE_FIRMWARE(api) \ | ||||||
| 	IWL_A000_HR_A0_FW_PRE "-" __stringify(api) ".ucode" | 	IWL_A000_HR_A0_FW_PRE __stringify(api) ".ucode" | ||||||
| 
 | 
 | ||||||
| #define NVM_HW_SECTION_NUM_FAMILY_A000		10 | #define NVM_HW_SECTION_NUM_FAMILY_A000		10 | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Thomas Backlund
						Thomas Backlund