mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[BOOTLIB]
- Correctly check for floppy devices in BlockIoEfiGetDeviceInformation. CID 1341189. svn path=/trunk/; revision=73643
This commit is contained in:
parent
ea461699aa
commit
7eb46b4d50
1 changed files with 1 additions and 1 deletions
|
@ -1012,7 +1012,7 @@ BlockIoEfiGetDeviceInformation (
|
|||
{
|
||||
/* We only support floppy drives */
|
||||
AcpiPath = (ACPI_HID_DEVICE_PATH*)LeafNode;
|
||||
if ((AcpiPath->HID == EISA_PNP_ID(0x604)) &&
|
||||
if ((AcpiPath->HID == EISA_PNP_ID(0x604)) ||
|
||||
(AcpiPath->HID == EISA_PNP_ID(0x700)))
|
||||
{
|
||||
/* Set the boot library specific device types */
|
||||
|
|
Loading…
Reference in a new issue