mirror of https://github.com/acidanthera/audk.git
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:
parent
482644d333
commit
30df4e18b8
|
@ -73,7 +73,12 @@ SIO_DEVICE_INFO mDevicesInfo[] = {
|
||||||
EISA_PNP_ID (0x303),
|
EISA_PNP_ID (0x303),
|
||||||
0,
|
0,
|
||||||
{ (ACPI_SMALL_RESOURCE_HEADER *) &mPs2KeyboardDeviceResources }
|
{ (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
|
||||||
};
|
};
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue