diff options
author | 2009-07-24 03:18:58 +0000 | |
---|---|---|
committer | 2009-07-24 03:18:58 +0000 | |
commit | a62b63da4e6a2523e05fcd0055ad9935697bfb6d (patch) | |
tree | 4dbbdccda8ce5a73d327d6487c9de3bf6a27d442 | |
parent | add compat support to gdb so that it can deal with libpthread with and (diff) | |
download | wireguard-openbsd-a62b63da4e6a2523e05fcd0055ad9935697bfb6d.tar.xz wireguard-openbsd-a62b63da4e6a2523e05fcd0055ad9935697bfb6d.zip |
silent VIA VT6202 workaround; from brad
-rw-r--r-- | sys/dev/pci/ehci_pci.c | 4 |
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); } |