]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
qlcnic: Fix firmware abort code check.
authorSritej Velaga <sritej.velaga@qlogic.com>
Fri, 3 Feb 2012 13:45:43 +0000 (13:45 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sat, 4 Feb 2012 20:59:30 +0000 (15:59 -0500)
Check bits 8-28 of peg_halt status register for firmware abort code.

Signed-off-by: Sritej Velaga <sritej.velaga@qlogic.com>
Signed-off-by: Sony Chacko <sony.chacko@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c

index a47c70b093428f005b9cb9093679cb9256750d0b..dba95311a46200a9e0fd46b045459aa7271f8218 100644 (file)
@@ -3159,7 +3159,7 @@ qlcnic_check_health(struct qlcnic_adapter *adapter)
                        QLCRD32(adapter, QLCNIC_CRB_PEG_NET_3 + 0x3c),
                        QLCRD32(adapter, QLCNIC_CRB_PEG_NET_4 + 0x3c));
        peg_status = QLCRD32(adapter, QLCNIC_PEG_HALT_STATUS1);
-       if (LSW(MSB(peg_status)) == 0x67)
+       if (QLCNIC_FWERROR_CODE(peg_status) == 0x67)
                dev_err(&adapter->pdev->dev,
                        "Firmware aborted with error code 0x00006700. "
                                "Device is being reset.\n");