Skip to content

Commit f92f26f

Browse files
lucacoelhoKalle Valo
authored andcommitted
iwlwifi: pcie: handle QuZ configs with killer NICs as well
The killer devices were left out of the checks that convert Qu-B0 to QuZ configurations. Add them. Cc: [email protected] # v5.3+ Fixes: 5a8c31a ("iwlwifi: pcie: fix recognition of QuZ devices") Signed-off-by: Luca Coelho <[email protected]> Tested-by: You-Sheng Yang <[email protected]> Signed-off-by: Kalle Valo <[email protected]> Link: https://lore.kernel.org/r/iwlwifi.20200424121518.b715acfbe211.I273a098064a22577e4fca767910fd9cf0013f5cb@changeid
1 parent 0e698df commit f92f26f

File tree

1 file changed

+4
-0
lines changed
  • drivers/net/wireless/intel/iwlwifi/pcie

1 file changed

+4
-0
lines changed

drivers/net/wireless/intel/iwlwifi/pcie/drv.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,6 +1092,10 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
10921092
iwl_trans->cfg = &iwl_ax101_cfg_quz_hr;
10931093
else if (iwl_trans->cfg == &iwl_ax201_cfg_qu_hr)
10941094
iwl_trans->cfg = &iwl_ax201_cfg_quz_hr;
1095+
else if (iwl_trans->cfg == &killer1650s_2ax_cfg_qu_b0_hr_b0)
1096+
iwl_trans->cfg = &iwl_ax1650s_cfg_quz_hr;
1097+
else if (iwl_trans->cfg == &killer1650i_2ax_cfg_qu_b0_hr_b0)
1098+
iwl_trans->cfg = &iwl_ax1650i_cfg_quz_hr;
10951099
}
10961100

10971101
#endif

0 commit comments

Comments
 (0)