From patchwork Fri Aug 28 18:57:00 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 32462 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 16BF4B70AD for ; Sat, 29 Aug 2009 06:34:07 +1000 (EST) Received: from localhost ([127.0.0.1]:58398 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mh895-0003PS-UJ for incoming@patchwork.ozlabs.org; Fri, 28 Aug 2009 16:34:03 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mh6gH-0003iK-JK for qemu-devel@nongnu.org; Fri, 28 Aug 2009 15:00:13 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mh6gC-0003Xw-AJ for qemu-devel@nongnu.org; Fri, 28 Aug 2009 15:00:12 -0400 Received: from [199.232.76.173] (port=43300 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mh6gC-0003Xc-3V for qemu-devel@nongnu.org; Fri, 28 Aug 2009 15:00:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:25617) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mh6gB-0007j3-JS for qemu-devel@nongnu.org; Fri, 28 Aug 2009 15:00:07 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n7SJ0655027271; Fri, 28 Aug 2009 15:00:06 -0400 Received: from localhost.localdomain (vpn2-8-222.ams2.redhat.com [10.36.8.222]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7SIxTQ4029889; Fri, 28 Aug 2009 15:00:05 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Fri, 28 Aug 2009 20:57:00 +0200 Message-Id: <3bed0495ad8dccbd661ce052e918c1e671cfa5f8.1251485646.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: aliguori@us.ibm.com Subject: [Qemu-devel] [PATCH 25/30] Only compile sd0303 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 d825dde..7f0e102 100644 --- a/Makefile +++ b/Makefile @@ -92,8 +92,9 @@ obj-$(CONFIG_TSC2005) += tsc2005.o obj-$(CONFIG_LM832X) += lm832x.o obj-$(CONFIG_TMP105) += tmp105.o obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o +obj-$(CONFIG_SSD0303) += ssd0303.o obj-y += i2c.o smbus.o smbus_eeprom.o max111x.o -obj-y += ssd0303.o ssd0323.o ads7846.o +obj-y += ssd0323.o ads7846.o obj-y += eeprom93xx.o obj-y += scsi-disk.o cdrom.o obj-y += scsi-generic.o diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak index dddc2a6..aed1ea3 100644 --- a/default-configs/arm-softmmu.mak +++ b/default-configs/arm-softmmu.mak @@ -14,3 +14,4 @@ CONFIG_TSC2005=y CONFIG_LM832X=y CONFIG_TMP105=y CONFIG_STELLARIS_INPUT=y +CONFIG_SD0303=y