提交 bb2792e0 编写于 作者: A Amit Kumar Salecha 提交者: David S. Miller

netxen: fix bios version calculation

Bios sub version from unified fw image is calculated incorrect.
Signed-off-by: NAmit Kumar Salecha <amit.salecha@qlogic.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 4300e8c7
...@@ -761,7 +761,7 @@ nx_get_bios_version(struct netxen_adapter *adapter) ...@@ -761,7 +761,7 @@ nx_get_bios_version(struct netxen_adapter *adapter)
if (adapter->fw_type == NX_UNIFIED_ROMIMAGE) { if (adapter->fw_type == NX_UNIFIED_ROMIMAGE) {
bios_ver = cpu_to_le32(*((u32 *) (&fw->data[prd_off]) bios_ver = cpu_to_le32(*((u32 *) (&fw->data[prd_off])
+ NX_UNI_BIOS_VERSION_OFF)); + NX_UNI_BIOS_VERSION_OFF));
return (bios_ver << 24) + ((bios_ver >> 8) & 0xff00) + return (bios_ver << 16) + ((bios_ver >> 8) & 0xff00) +
(bios_ver >> 24); (bios_ver >> 24);
} else } else
return cpu_to_le32(*(u32 *)&fw->data[NX_BIOS_VERSION_OFFSET]); return cpu_to_le32(*(u32 *)&fw->data[NX_BIOS_VERSION_OFFSET]);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册