From patchwork Thu Aug 27 19:17:56 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 32298 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id 7AA61B70D7 for ; Fri, 28 Aug 2009 05:57:50 +1000 (EST) Received: from localhost ([127.0.0.1]:34071 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mgl6P-0005DJ-9I for incoming@patchwork.ozlabs.org; Thu, 27 Aug 2009 15:57:45 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MgkWr-0005jl-5W for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:21:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MgkWl-0005dj-Vd for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:21:00 -0400 Received: from [199.232.76.173] (port=54426 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MgkWl-0005dd-Nj for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:20:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48838) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MgkWl-000675-0o for qemu-devel@nongnu.org; Thu, 27 Aug 2009 15:20:55 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n7RJKsZn004042 for ; Thu, 27 Aug 2009 15:20:54 -0400 Received: from localhost.localdomain (vpn2-8-219.ams2.redhat.com [10.36.8.219]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7RJKR0J028641; Thu, 27 Aug 2009 15:20:53 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Thu, 27 Aug 2009 21:17:56 +0200 Message-Id: <82a33f931b98a2c260f502dc70265492d495f191.1251399960.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 21/30] Only compile tsc2005 when one target uses it X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Juan Quintela --- Makefile | 3 ++- default-configs/arm-softmmu.mak | 1 + 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index c7d6d13..a1669ba 100644 --- a/Makefile +++ b/Makefile @@ -87,9 +87,10 @@ obj-$(CONFIG_PTIMER) += ptimer.o obj-$(CONFIG_MAX7310) += max7310.o obj-$(CONFIG_WM8750) += wm8750.o obj-$(CONFIG_TWL92230) += twl92230.o +obj-$(CONFIG_TSC2005) += tsc2005.o obj-y += i2c.o smbus.o smbus_eeprom.o max111x.o obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o -obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o +obj-y += tmp105.o lm832x.o eeprom93xx.o obj-y += scsi-disk.o cdrom.o obj-y += scsi-generic.o obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak index d439509..740c3a8 100644 --- a/default-configs/arm-softmmu.mak +++ b/default-configs/arm-softmmu.mak @@ -10,3 +10,4 @@ CONFIG_SD=y CONFIG_MAX7310=y CONFIG_WM8750=y CONFIG_TWL92230=y +CONFIG_TSC2005=y