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
|
@ -72,8 +72,13 @@ SIO_DEVICE_INFO mDevicesInfo[] = {
|
|||
{
|
||||
EISA_PNP_ID (0x303),
|
||||
0,
|
||||
{ (ACPI_SMALL_RESOURCE_HEADER *)&mPs2KeyboardDeviceResources }
|
||||
} // PS/2 Keyboard Controller
|
||||
{ (ACPI_SMALL_RESOURCE_HEADER *) &mPs2KeyboardDeviceResources }
|
||||
}, // PS/2 Keyboard Controller
|
||||
{
|
||||
EISA_PNP_ID(0xF13),
|
||||
0,
|
||||
{ (ACPI_SMALL_RESOURCE_HEADER *) &mPs2KeyboardDeviceResources }
|
||||
} // PS/2 Mouse Controller
|
||||
};
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue