OvmfPkg/SioBusDxe: Add PS/2 mouse support

SioBusDxe by default does not create a device for PS/2 mice, this patch adds that device.
This commit is contained in:
Goldfish64 2021-12-16 17:30:58 +03:00 committed by Vitaly Cheptsov
parent 2a88c5f741
commit b057fa7705

View File

@ -67,7 +67,12 @@ SIO_DEVICE_INFO mDevicesInfo[] = {
EISA_PNP_ID(0x303),
0,
{ (ACPI_SMALL_RESOURCE_HEADER *) &mPs2KeyboardDeviceResources }
} // PS/2 Keyboard Controller
}, // PS/2 Keyboard Controller
{
EISA_PNP_ID(0xF13),
0,
{ (ACPI_SMALL_RESOURCE_HEADER *) &mPs2KeyboardDeviceResources }
} // PS/2 Mouse Controller
};
//