[coreboot] r612 - coreboot-v3/util/x86emu/pcbios

svn at coreboot.org svn at coreboot.org
Wed Feb 20 14:33:36 CET 2008


Author: hailfinger
Date: 2008-02-20 14:33:36 +0100 (Wed, 20 Feb 2008)
New Revision: 612

Modified:
   coreboot-v3/util/x86emu/pcbios/pcibios.c
Log:
The commit in r558 had this:
> > Author: rminnich
> > util/x86emu/vm86.c
> > Change uses of dev_find_device to dev_find_pci_device

Unfortunately, x86emu/pcbios/pcibios.c was missed in the conversion. Fix 
it to get builds with x86emu compiling again.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006 at gmx.net>
Acked-by: Corey Osgood <corey.osgood at gmail.com>


Modified: coreboot-v3/util/x86emu/pcbios/pcibios.c
===================================================================
--- coreboot-v3/util/x86emu/pcbios/pcibios.c	2008-02-19 00:34:32 UTC (rev 611)
+++ coreboot-v3/util/x86emu/pcbios/pcibios.c	2008-02-20 13:33:36 UTC (rev 612)
@@ -61,7 +61,7 @@
 		break;
 	case FIND_PCI_DEVICE:
 		/* FixME: support SI != 0 */
-		dev = dev_find_device(X86_DX, X86_CX, dev);
+		dev = dev_find_pci_device(X86_DX, X86_CX, dev);
 		if (dev != 0) {
 			X86_BH = dev->bus->secondary;
 			X86_BL = dev->path.u.pci.devfn;





More information about the coreboot mailing list