mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Make the VIA workaround application somewhat more consistent with the
ATI one.
This commit is contained in:
parent
af3839c4ab
commit
243d601f05
1 changed files with 2 additions and 1 deletions
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue