diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2020-02-29 23:20:32 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-04 14:21:00 -0800 |
commit | 87578b50d8ad657ea8fe1417fa0eedbbbdfe9d29 (patch) | |
tree | c38b6f585982f933bc8b0fb678ab74679cfdc53e /drivers | |
parent | 5a1c63f129415bb8382a369275c3f2eb9cd92265 (diff) |
net: marvell: add PCI_STATUS_SIG_TARGET_ABORT to PCI status error bits
In preparation of factoring out PCI_STATUS error bit handling let drivers
use the same collection of error bits. To facilitate bisecting we do this
in a separate patch per affected driver. For the Marvell drivers we have
to add PCI_STATUS_SIG_TARGET_ABORT to the error bits.
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/marvell/skge.h | 1 | ||||
-rw-r--r-- | drivers/net/ethernet/marvell/sky2.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/marvell/skge.h b/drivers/net/ethernet/marvell/skge.h index a1313d57e283..8ef19b3aa8ff 100644 --- a/drivers/net/ethernet/marvell/skge.h +++ b/drivers/net/ethernet/marvell/skge.h @@ -19,6 +19,7 @@ PCI_STATUS_SIG_SYSTEM_ERROR | \ PCI_STATUS_REC_MASTER_ABORT | \ PCI_STATUS_REC_TARGET_ABORT | \ + PCI_STATUS_SIG_TARGET_ABORT | \ PCI_STATUS_PARITY) enum csr_regs { diff --git a/drivers/net/ethernet/marvell/sky2.h b/drivers/net/ethernet/marvell/sky2.h index ada1ca60f088..2474d326319e 100644 --- a/drivers/net/ethernet/marvell/sky2.h +++ b/drivers/net/ethernet/marvell/sky2.h @@ -256,6 +256,7 @@ enum { PCI_STATUS_SIG_SYSTEM_ERROR | \ PCI_STATUS_REC_MASTER_ABORT | \ PCI_STATUS_REC_TARGET_ABORT | \ + PCI_STATUS_SIG_TARGET_ABORT | \ PCI_STATUS_PARITY) enum csr_regs { |