forked from Minki/linux
cxgb4: reset FW_OK flag on firmware crash
If firmware reports error, reset FW_OK flag. Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com> Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2d0a527ed3
commit
825b2b6fd9
@ -195,9 +195,11 @@ static void t4_report_fw_error(struct adapter *adap)
|
|||||||
u32 pcie_fw;
|
u32 pcie_fw;
|
||||||
|
|
||||||
pcie_fw = t4_read_reg(adap, PCIE_FW_A);
|
pcie_fw = t4_read_reg(adap, PCIE_FW_A);
|
||||||
if (pcie_fw & PCIE_FW_ERR_F)
|
if (pcie_fw & PCIE_FW_ERR_F) {
|
||||||
dev_err(adap->pdev_dev, "Firmware reports adapter error: %s\n",
|
dev_err(adap->pdev_dev, "Firmware reports adapter error: %s\n",
|
||||||
reason[PCIE_FW_EVAL_G(pcie_fw)]);
|
reason[PCIE_FW_EVAL_G(pcie_fw)]);
|
||||||
|
adap->flags &= ~FW_OK;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user