From 7eb46b4d50739444c2ab0325ebac635dfed81f3c Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Tue, 31 Jan 2017 13:15:29 +0000 Subject: [PATCH] [BOOTLIB] - Correctly check for floppy devices in BlockIoEfiGetDeviceInformation. CID 1341189. svn path=/trunk/; revision=73643 --- reactos/boot/environ/lib/io/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/boot/environ/lib/io/device.c b/reactos/boot/environ/lib/io/device.c index d98b72b9fdf..9a9659c978d 100644 --- a/reactos/boot/environ/lib/io/device.c +++ b/reactos/boot/environ/lib/io/device.c @@ -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 */ -- 2.17.1