Make the VIA workaround actually do its intended job.

MFC after:	3 days
This commit is contained in:
marius 2012-05-26 08:31:12 +00:00
parent b1a96a2c7a
commit bedff6538f

View File

@ -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");
}
}