diff options
author | 2015-06-07 10:47:53 +0000 | |
---|---|---|
committer | 2015-06-07 10:47:53 +0000 | |
commit | 62c0d444e8155f7df760effb0792df9a1498f27c (patch) | |
tree | b5498790b544a215eec4bd5b6d26389d91915244 | |
parent | Add CR4_FSGSBASE (diff) | |
download | wireguard-openbsd-62c0d444e8155f7df760effb0792df9a1498f27c.tar.xz wireguard-openbsd-62c0d444e8155f7df760effb0792df9a1498f27c.zip |
mark the usb hci driver pci glue code as only needed by the pci attachment,
not all usb controllers.
this lets jsg build ehci on a platform that lacks a pci bus.
ok jsg@
-rw-r--r-- | sys/dev/pci/files.pci | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/pci/files.pci b/sys/dev/pci/files.pci index 2575dbfb778..5b5b61cb180 100644 --- a/sys/dev/pci/files.pci +++ b/sys/dev/pci/files.pci @@ -1,4 +1,4 @@ -# $OpenBSD: files.pci,v 1.316 2015/06/04 21:13:12 stsp Exp $ +# $OpenBSD: files.pci,v 1.317 2015/06/07 10:47:53 dlg Exp $ # $NetBSD: files.pci,v 1.20 1996/09/24 17:47:15 christos Exp $ # # Config file and device description for machine-independent PCI code. @@ -494,19 +494,19 @@ file dev/pci/mbg.c mbg # UHCI USB controller attach uhci at pci with uhci_pci -file dev/pci/uhci_pci.c uhci +file dev/pci/uhci_pci.c uhci_pci # OHCI USB controller attach ohci at pci with ohci_pci -file dev/pci/ohci_pci.c ohci +file dev/pci/ohci_pci.c ohci_pci # EHCI USB controller attach ehci at pci with ehci_pci -file dev/pci/ehci_pci.c ehci +file dev/pci/ehci_pci.c ehci_pci # XHCI USB controller attach xhci at pci with xhci_pci -file dev/pci/xhci_pci.c xhci +file dev/pci/xhci_pci.c xhci_pci # YENTA PCI-CardBus bridge #device cbb: cbbus, pcmciabus |