From patchwork Wed Oct 7 00:41:17 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 35212 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 ozlabs.org (Postfix) with ESMTPS id BBD96B7B6F for ; Wed, 7 Oct 2009 12:40:22 +1100 (EST) Received: from localhost ([127.0.0.1]:40672 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvLVq-0001Po-5v for incoming@patchwork.ozlabs.org; Tue, 06 Oct 2009 21:40:18 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvKbk-0006fp-Al for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:42:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvKbd-0006at-MJ for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:42:18 -0400 Received: from [199.232.76.173] (port=60260 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvKbc-0006aa-Mb for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:42:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:3276) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvKbc-0000GT-4J for qemu-devel@nongnu.org; Tue, 06 Oct 2009 20:42:12 -0400 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n970gAX0014707 for ; Tue, 6 Oct 2009 20:42:11 -0400 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n970fiGi022901; Tue, 6 Oct 2009 20:42:10 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Wed, 7 Oct 2009 02:41:17 +0200 Message-Id: <7478443c4f1ac176554c7a8f20eb91caee225ddf.1254875337.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 21/31] Only compile twl92230 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 4daa0a7..e190cf8 100644 --- a/Makefile +++ b/Makefile @@ -100,8 +100,9 @@ obj-y += irq.o ioport.o obj-$(CONFIG_PTIMER) += ptimer.o obj-$(CONFIG_MAX7310) += max7310.o obj-$(CONFIG_WM8750) += wm8750.o +obj-$(CONFIG_TWL92230) += twl92230.o obj-y += i2c.o smbus.o smbus_eeprom.o max111x.o -obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o +obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o obj-y += scsi-disk.o cdrom.o obj-y += scsi-generic.o scsi-bus.o diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak index 6149b97..d439509 100644 --- a/default-configs/arm-softmmu.mak +++ b/default-configs/arm-softmmu.mak @@ -9,3 +9,4 @@ CONFIG_PTIMER=y CONFIG_SD=y CONFIG_MAX7310=y CONFIG_WM8750=y +CONFIG_TWL92230=y