Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 744b66dd authored by Shahed Shaikh's avatar Shahed Shaikh Committed by David S. Miller
Browse files

qlcnic: Fix dump template version mask



Driver was using wrong mask for template version.

Signed-off-by: default avatarShahed Shaikh <shahed.shaikh@qlogic.com>
Signed-off-by: default avatarSucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 15d79747
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1084,7 +1084,7 @@ flash_temp:
	tmpl_hdr = ahw->fw_dump.tmpl_hdr;
	tmpl_hdr->drv_cap_mask = QLCNIC_DUMP_MASK_DEF;

	if ((tmpl_hdr->version & 0xffffff) >= 0x20001)
	if ((tmpl_hdr->version & 0xfffff) >= 0x20001)
		ahw->fw_dump.use_pex_dma = true;
	else
		ahw->fw_dump.use_pex_dma = false;