Commit b5a44bcb authored by Divy Le Ray's avatar Divy Le Ray Committed by Jeff Garzik

cxgb3 - bogus status error string

Remove a status error string from the pci-x context
and add it where it belongs - the pci-e context.
Signed-off-by: default avatarDivy Le Ray <divy@chelsio.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 6195c71d
...@@ -1181,7 +1181,6 @@ static int t3_handle_intr_status(struct adapter *adapter, unsigned int reg, ...@@ -1181,7 +1181,6 @@ static int t3_handle_intr_status(struct adapter *adapter, unsigned int reg,
static void pci_intr_handler(struct adapter *adapter) static void pci_intr_handler(struct adapter *adapter)
{ {
static const struct intr_info pcix1_intr_info[] = { static const struct intr_info pcix1_intr_info[] = {
{ F_PEXERR, "PCI PEX error", -1, 1 },
{F_MSTDETPARERR, "PCI master detected parity error", -1, 1}, {F_MSTDETPARERR, "PCI master detected parity error", -1, 1},
{F_SIGTARABT, "PCI signaled target abort", -1, 1}, {F_SIGTARABT, "PCI signaled target abort", -1, 1},
{F_RCVTARABT, "PCI received target abort", -1, 1}, {F_RCVTARABT, "PCI received target abort", -1, 1},
...@@ -1218,6 +1217,7 @@ static void pci_intr_handler(struct adapter *adapter) ...@@ -1218,6 +1217,7 @@ static void pci_intr_handler(struct adapter *adapter)
static void pcie_intr_handler(struct adapter *adapter) static void pcie_intr_handler(struct adapter *adapter)
{ {
static const struct intr_info pcie_intr_info[] = { static const struct intr_info pcie_intr_info[] = {
{F_PEXERR, "PCI PEX error", -1, 1},
{F_UNXSPLCPLERRR, {F_UNXSPLCPLERRR,
"PCI unexpected split completion DMA read error", -1, 1}, "PCI unexpected split completion DMA read error", -1, 1},
{F_UNXSPLCPLERRC, {F_UNXSPLCPLERRC,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment