summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/pci_subr.c
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2006-06-01 11:17:31 +0000
committerbrad <brad@openbsd.org>2006-06-01 11:17:31 +0000
commitffe7321e0fa189cc6fec3b25f1dd4ba40437f1f3 (patch)
tree0fb68ba016509341c8769669a3fdbe15b201371a /sys/dev/pci/pci_subr.c
parentstart sentence with a capital letter; (diff)
downloadwireguard-openbsd-ffe7321e0fa189cc6fec3b25f1dd4ba40437f1f3.tar.xz
wireguard-openbsd-ffe7321e0fa189cc6fec3b25f1dd4ba40437f1f3.zip
add 2 subclasses, subclass storage SAS and subclass system SD Host Controller.
From NetBSD
Diffstat (limited to 'sys/dev/pci/pci_subr.c')
-rw-r--r--sys/dev/pci/pci_subr.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/pci_subr.c b/sys/dev/pci/pci_subr.c
index 94499f36f7f..ed4412d86ce 100644
--- a/sys/dev/pci/pci_subr.c
+++ b/sys/dev/pci/pci_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_subr.c,v 1.18 2006/05/12 20:24:39 brad Exp $ */
+/* $OpenBSD: pci_subr.c,v 1.19 2006/06/01 11:17:31 brad Exp $ */
/* $NetBSD: pci_subr.c,v 1.19 1996/10/13 01:38:29 christos Exp $ */
/*
@@ -71,6 +71,7 @@ const struct pci_class pci_subclass_mass_storage[] = {
{ "RAID", PCI_SUBCLASS_MASS_STORAGE_RAID, },
{ "ATA", PCI_SUBCLASS_MASS_STORAGE_ATA, },
{ "SATA", PCI_SUBCLASS_MASS_STORAGE_SATA, },
+ { "SAS", PCI_SUBCLASS_MASS_STORAGE_SAS, },
{ "miscellaneous", PCI_SUBCLASS_MASS_STORAGE_MISC, },
{ 0 },
};
@@ -144,6 +145,7 @@ const struct pci_class pci_subclass_system[] = {
{ "8254 timer", PCI_SUBCLASS_SYSTEM_TIMER, },
{ "RTC", PCI_SUBCLASS_SYSTEM_RTC, },
{ "PCI Hot-Plug", PCI_SUBCLASS_SYSTEM_PCIHOTPLUG, },
+ { "SD Host Controller", PCI_SUBCLASS_SYSTEM_SDHC, },
{ "miscellaneous", PCI_SUBCLASS_SYSTEM_MISC, },
{ 0 },
};