Make the VIA workaround application somewhat more consistent with the

ATI one.
This commit is contained in:
Marius Strobl 2012-05-26 08:43:51 +00:00
parent af3839c4ab
commit 243d601f05
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=236073

View File

@ -243,7 +243,8 @@ ehci_pci_via_quirk(device_t self)
val = pci_read_config(self, 0x4b, 1);
if (val & 0x20)
return;
pci_write_config(self, 0x4b, val | 0x20, 1);
val |= 0x20;
pci_write_config(self, 0x4b, val, 1);
device_printf(self, "VIA-quirk applied\n");
}
}