aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/fddi/skfp
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2020-02-29 23:21:45 +0100
committerDavid S. Miller <davem@davemloft.net>2020-03-04 14:21:00 -0800
commita84bf9970eab4038bbcc492a70a2d934a367068f (patch)
tree80397a63715b159b12ab99b947b0c58df1919228 /drivers/net/fddi/skfp
parentnet: marvell: add PCI_STATUS_SIG_TARGET_ABORT to PCI status error bits (diff)
downloadlinux-dev-a84bf9970eab4038bbcc492a70a2d934a367068f.tar.xz
linux-dev-a84bf9970eab4038bbcc492a70a2d934a367068f.zip
net: skfp: add PCI_STATUS_REC_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 skfp driver we have to add PCI_STATUS_REC_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/net/fddi/skfp')
-rw-r--r--drivers/net/fddi/skfp/h/skfbi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/fddi/skfp/h/skfbi.h b/drivers/net/fddi/skfp/h/skfbi.h
index 480795681719..36e20a5142fe 100644
--- a/drivers/net/fddi/skfp/h/skfbi.h
+++ b/drivers/net/fddi/skfp/h/skfbi.h
@@ -34,7 +34,7 @@
#define I2C_ADDR_VPD 0xA0 /* I2C address for the VPD EEPROM */
-#define PCI_ERRBITS (PCI_STATUS_DETECTED_PARITY | PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT | PCI_STATUS_SIG_TARGET_ABORT | PCI_STATUS_PARITY)
+#define PCI_ERRBITS (PCI_STATUS_DETECTED_PARITY | PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT | PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT | PCI_STATUS_PARITY)