Skip to content

Commit 847a4bf

Browse files
jmberg-intelMiriam-Rachel
authored andcommitted
wifi: iwlwifi: pcie: fix non-MSIX handshake register
When reading the interrupt status after a FW reset handshake timeout, read the actual value not the mask for the non-MSIX case. Fixes: ab606de ("wifi: iwlwifi: pcie: add support for the reset handshake in MSI") Signed-off-by: Johannes Berg <[email protected]> Reviewed-by: Emmanuel Grumbach <[email protected]> Signed-off-by: Miri Korenblit <[email protected]> Link: https://patch.msgid.link/20250604061200.87a849a55086.I2f8571aafa55aa3b936a30b938de9d260592a584@changeid Signed-off-by: Miri Korenblit <[email protected]>
1 parent 960c7e6 commit 847a4bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void iwl_trans_pcie_fw_reset_handshake(struct iwl_trans *trans)
125125
reset_done =
126126
inta_hw & MSIX_HW_INT_CAUSES_REG_RESET_DONE;
127127
} else {
128-
inta_hw = iwl_read32(trans, CSR_INT_MASK);
128+
inta_hw = iwl_read32(trans, CSR_INT);
129129
reset_done = inta_hw & CSR_INT_BIT_RESET_DONE;
130130
}
131131

0 commit comments

Comments
 (0)