summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/pci/pchb.c6
-rw-r--r--sys/arch/i386/pci/pchb.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/amd64/pci/pchb.c b/sys/arch/amd64/pci/pchb.c
index 6e599d7be4a..9b30aa3aca8 100644
--- a/sys/arch/amd64/pci/pchb.c
+++ b/sys/arch/amd64/pci/pchb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pchb.c,v 1.43 2018/04/28 15:44:59 jasper Exp $ */
+/* $OpenBSD: pchb.c,v 1.44 2020/01/04 01:34:24 jsg Exp $ */
/* $NetBSD: pchb.c,v 1.1 2003/04/26 18:39:50 fvdl Exp $ */
/*
* Copyright (c) 2000 Michael Shalayeff
@@ -159,8 +159,8 @@ pchbattach(struct device *parent, struct device *self, void *aux)
case PCI_VENDOR_AMD:
printf("\n");
switch (PCI_PRODUCT(pa->pa_id)) {
- case PCI_PRODUCT_AMD_AMD64_0F_HT:
- case PCI_PRODUCT_AMD_AMD64_10_HT:
+ case PCI_PRODUCT_AMD_0F_HT:
+ case PCI_PRODUCT_AMD_10_HT:
for (i = 0; i < AMD64HT_NUM_LDT; i++)
pchb_amd64ht_attach(self, pa, i);
break;
diff --git a/sys/arch/i386/pci/pchb.c b/sys/arch/i386/pci/pchb.c
index 11e78f855db..abb81989871 100644
--- a/sys/arch/i386/pci/pchb.c
+++ b/sys/arch/i386/pci/pchb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pchb.c,v 1.90 2018/04/28 15:44:59 jasper Exp $ */
+/* $OpenBSD: pchb.c,v 1.91 2020/01/04 01:34:24 jsg Exp $ */
/* $NetBSD: pchb.c,v 1.65 2007/08/15 02:26:13 markd Exp $ */
/*
@@ -185,8 +185,8 @@ pchbattach(struct device *parent, struct device *self, void *aux)
case PCI_VENDOR_AMD:
printf("\n");
switch (PCI_PRODUCT(pa->pa_id)) {
- case PCI_PRODUCT_AMD_AMD64_0F_HT:
- case PCI_PRODUCT_AMD_AMD64_10_HT:
+ case PCI_PRODUCT_AMD_0F_HT:
+ case PCI_PRODUCT_AMD_10_HT:
for (i = 0; i < AMD64HT_NUM_LDT; i++)
pchb_amd64ht_attach(self, pa, i);
break;