wifi: iwlwifi: don't support WH a step

This is no longer supported. Fail the probe if such an HW is
detected.

Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20250828111032.8d484f21a237.I16a30af0b4b964339bd60c3bed854d1028c1fff8@changeid
This commit is contained in:
Miri Korenblit 2025-08-28 11:26:01 +03:00
parent 8cab67474b
commit 9b273ee9c0

View File

@ -337,6 +337,12 @@ static int iwl_request_firmware(struct iwl_drv *drv, bool first)
return -EINVAL;
}
if (CSR_HW_RFID_TYPE(drv->trans->info.hw_rf_id) == IWL_CFG_RF_TYPE_WH &&
CSR_HW_RFID_STEP(drv->trans->info.hw_rf_id) == SILICON_A_STEP) {
IWL_ERR(drv, "WH A step is not supported\n");
return -EINVAL;
}
fw_name_pre = iwl_drv_get_fwname_pre(drv->trans, _fw_name_pre);
if (first)