From: Avi Kivity <[email protected]> Now that hw/msix.c does not depend on CONFIG_KVM, remove it from Makefile.target and put it back in Makefile.objs.
Acked-by: Michael S. Tsirkin <[email protected]> Signed-off-by: Avi Kivity <[email protected]> diff --git a/Makefile.objs b/Makefile.objs index a814dfe..ca5aebc 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -196,9 +196,7 @@ hw-obj-$(CONFIG_PIIX4) += piix4.o # PCI watchdog devices hw-obj-y += wdt_i6300esb.o -# MSI-X depends on kvm for interrupt injection, -# so moved it from Makefile.objs to Makefile.target for now -# hw-obj-y += msix.o +hw-obj-y += msix.o # PCI network cards hw-obj-y += ne2000.o diff --git a/Makefile.target b/Makefile.target index 2a1349a..d8a619d 100644 --- a/Makefile.target +++ b/Makefile.target @@ -183,10 +183,6 @@ obj-y += rwhandler.o obj-$(CONFIG_KVM) += kvm.o kvm-all.o obj-$(CONFIG_NO_KVM) += kvm-stub.o -# MSI-X depends on kvm for interrupt injection, -# so moved it from Makefile.objs to Makefile.target for now -obj-y += msix.o - LIBS+=-lz QEMU_CFLAGS += $(VNC_TLS_CFLAGS) -- 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
