From bedff6538ff7cd67bd258f19d29ad94122602baa Mon Sep 17 00:00:00 2001 From: marius Date: Sat, 26 May 2012 08:31:12 +0000 Subject: Make the VIA workaround actually do its intended job. MFC after: 3 days --- sys/dev/usb/controller/ehci_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/usb/controller/ehci_pci.c b/sys/dev/usb/controller/ehci_pci.c index e293ec8..39945d8 100644 --- a/sys/dev/usb/controller/ehci_pci.c +++ b/sys/dev/usb/controller/ehci_pci.c @@ -243,7 +243,7 @@ ehci_pci_via_quirk(device_t self) val = pci_read_config(self, 0x4b, 1); if (val & 0x20) return; - pci_write_config(self, 0x4b, val, 1); + pci_write_config(self, 0x4b, val | 0x20, 1); device_printf(self, "VIA-quirk applied\n"); } } -- cgit v1.1