summaryrefslogtreecommitdiff
path: root/sys/dev/pci/ehci_pci.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-07-24 03:18:59 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-07-24 03:18:59 +0000
commit940c85f00aa7564e17b4b5f36be2b692ca1de119 (patch)
tree85455c8af4a96865edb1eb328af055f6f74c7414 /sys/dev/pci/ehci_pci.c
parentad6ace7439b6095ef1a6b9a43827044530690bd2 (diff)
silent VIA VT6202 workaround; from brad
Diffstat (limited to 'sys/dev/pci/ehci_pci.c')
-rw-r--r--sys/dev/pci/ehci_pci.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/ehci_pci.c b/sys/dev/pci/ehci_pci.c
index 93eea038238..03582b389fe 100644
--- a/sys/dev/pci/ehci_pci.c
+++ b/sys/dev/pci/ehci_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ehci_pci.c,v 1.17 2009/07/23 19:42:02 deraadt Exp $ */
+/* $OpenBSD: ehci_pci.c,v 1.18 2009/07/24 03:18:58 deraadt Exp $ */
/* $NetBSD: ehci_pci.c,v 1.15 2004/04/23 21:13:06 itojun Exp $ */
/*
@@ -157,8 +157,6 @@ ehci_pci_attach(struct device *parent, struct device *self, void *aux)
*/
value = pci_conf_read(sc->sc_pc, sc->sc_tag,
EHCI_VT6202_WORKAROUND_REG);
- if ((value & 0x20000000) == 0)
- printf(", applying VIA VT6202 workaround");
pci_conf_write(sc->sc_pc, sc->sc_tag,
EHCI_VT6202_WORKAROUND_REG, value | 0x20000000);
}