summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_fxp_pci.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2020-01-05 01:08:00 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2020-01-05 01:08:00 +0000
commit33ea7d5397d8bfc516a2ad489e561873e5db3ec2 (patch)
treece3c82a3c8e4142d7be9e7802e2d0e00d61336dd /sys/dev/pci/if_fxp_pci.c
parent3ee459892ce41c9b23b2a39022f07aaf4d270263 (diff)
consistently uppercase pci product defines
ok mpi@
Diffstat (limited to 'sys/dev/pci/if_fxp_pci.c')
-rw-r--r--sys/dev/pci/if_fxp_pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c
index d2d8a080043..ea52a67517d 100644
--- a/sys/dev/pci/if_fxp_pci.c
+++ b/sys/dev/pci/if_fxp_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_fxp_pci.c,v 1.65 2015/11/24 17:11:39 mpi Exp $ */
+/* $OpenBSD: if_fxp_pci.c,v 1.66 2020/01/05 01:07:58 jsg Exp $ */
/*
* Copyright (c) 1995, David Greenman
@@ -87,7 +87,7 @@ struct cfattach fxp_pci_ca = {
};
const struct pci_matchid fxp_pci_devices[] = {
- { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8255x },
+ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8255X },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82552 },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82559 },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82559ER },
@@ -186,7 +186,7 @@ fxp_pci_attach(struct device *parent, struct device *self, void *aux)
}
switch (PCI_PRODUCT(pa->pa_id)) {
- case PCI_PRODUCT_INTEL_8255x:
+ case PCI_PRODUCT_INTEL_8255X:
case PCI_PRODUCT_INTEL_82559:
case PCI_PRODUCT_INTEL_82559ER:
chipname = "i82557";