From d08bee553937f13aa1fc22725e35a2392a524fb0 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Sat, 20 Aug 2005 23:50:06 +0000 Subject: [PATCH] Report the PCI bus type as PCIBus instead of Internal. svn path=/trunk/; revision=17453 --- reactos/boot/freeldr/freeldr/arch/i386/hwpci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c b/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c index 07bc17bfca0..04f3e811c96 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/hwpci.c @@ -293,7 +293,7 @@ DetectPciBios(FRLDRHKEY SystemKey, ULONG *BusNumber) /* Initialize resource descriptor */ memset(FullResourceDescriptor, 0, Size); - FullResourceDescriptor->InterfaceType = Internal; + FullResourceDescriptor->InterfaceType = PCIBus; FullResourceDescriptor->BusNumber = 0; FullResourceDescriptor->PartialResourceList.Count = 0;