From patchwork Wed Aug 12 21:42:22 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mohammed Gamal X-Patchwork-Id: 40951 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n7CLgUXZ013087 for ; Wed, 12 Aug 2009 21:42:30 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751362AbZHLVm1 (ORCPT ); Wed, 12 Aug 2009 17:42:27 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751371AbZHLVm1 (ORCPT ); Wed, 12 Aug 2009 17:42:27 -0400 Received: from mail-qy0-f196.google.com ([209.85.221.196]:63218 "EHLO mail-qy0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750890AbZHLVm0 (ORCPT ); Wed, 12 Aug 2009 17:42:26 -0400 Received: by qyk34 with SMTP id 34so288718qyk.33 for ; Wed, 12 Aug 2009 14:42:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=H1ry29c9j31jtbqICksYrqd1ousth/Urz68mTR8Xieg=; b=IKf2QX4JERJaJ9tBH7TtmEugQ+k0HrtMjBGjCAIh7xf9/9UfYfzdSjrVzg79SVHIVa ynQfKzBA1IvtLLcvUpCCWSKU1pZiuP7WxOKK8igf9WUC3HjZzSGNq6yQlK7rolAy/pZ0 qMbXJh6WTsuAY35PIO/Y7mRuAMaCuv9fZmOlw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=pfsrxhAdMy/LcMCU+Uc1oeZGUXeT1GRo9UD6oAr3s0UObxk9QTtGE4OTg/4waA4rYV 4Wv3A/yQbZ0NnbY3Rok2lJ1cajBrf+Wn9QRNFEeFqqQ6MA6pBbf5ib/mIqYCDpoY+BMx xKYxwPQCtxq26NKE+fWSuv0NAvC+420+NW4N8= Received: by 10.224.51.8 with SMTP id b8mr659234qag.349.1250113347264; Wed, 12 Aug 2009 14:42:27 -0700 (PDT) Received: from localhost ([188.54.57.241]) by mx.google.com with ESMTPS id 5sm775985qwg.30.2009.08.12.14.42.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 12 Aug 2009 14:42:25 -0700 (PDT) Date: Thu, 13 Aug 2009 00:42:22 +0300 From: Mohammed Gamal To: avi@redhat.com Cc: kvm@vger.kernel.org Subject: [PATCH] Fix Makefile rule for compiling emulate.c Message-ID: <20090812214222.GA30132@mohd-laptop> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: Mohammed Gamal --- arch/x86/kvm/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/kvm/Makefile b/arch/x86/kvm/Makefile index afaaa76..0e7fe78 100644 --- a/arch/x86/kvm/Makefile +++ b/arch/x86/kvm/Makefile @@ -9,7 +9,7 @@ kvm-y += $(addprefix ../../../virt/kvm/, kvm_main.o ioapic.o \ coalesced_mmio.o irq_comm.o eventfd.o) kvm-$(CONFIG_IOMMU_API) += $(addprefix ../../../virt/kvm/, iommu.o) -kvm-y += x86.o mmu.o x86_emulate.o i8259.o irq.o lapic.o \ +kvm-y += x86.o mmu.o emulate.o i8259.o irq.o lapic.o \ i8254.o timer.o kvm-intel-y += vmx.o kvm-amd-y += svm.o