From: Juan Quintela <[email protected]> And mips still don't have pci assignment support. piix4.c isn't built for i386 so this could cause a compile problem.
Signed-off-by: Juan Quintela <[email protected]> Signed-off-by: Avi Kivity <[email protected]> diff --git a/Makefile.target b/Makefile.target index e2965b6..6846451 100644 --- a/Makefile.target +++ b/Makefile.target @@ -211,7 +211,6 @@ obj-i386-y += cirrus_vga.o apic.o ioapic.o parallel.o acpi.o piix_pci.o obj-i386-y += usb-uhci.o vmmouse.o vmport.o vmware_vga.o hpet.o obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o obj-i386-y += extboot.o -obj-i386-y += piix4.o obj-i386-y += ne2000-isa.o obj-i386-y += testdev.o diff --git a/hw/piix_pci.c b/hw/piix_pci.c index 26e00db..d177e97 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -291,9 +291,6 @@ int piix_get_irq(int pin) { if (piix3_dev) return piix3_dev->dev.config[0x60+pin]; - if (piix4_dev) - return piix4_dev->config[0x60+pin]; - return 0; } -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
