From patchwork Fri Aug 7 12:48:01 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kalle Valo X-Patchwork-Id: 39916 X-Patchwork-Delegate: tony@atomide.com 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 n77Cm7dx027743 for ; Fri, 7 Aug 2009 12:48:07 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757388AbZHGMsE (ORCPT ); Fri, 7 Aug 2009 08:48:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757785AbZHGMsE (ORCPT ); Fri, 7 Aug 2009 08:48:04 -0400 Received: from emh03.mail.saunalahti.fi ([62.142.5.109]:53591 "EHLO emh03.mail.saunalahti.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757388AbZHGMsD (ORCPT ); Fri, 7 Aug 2009 08:48:03 -0400 Received: from saunalahti-vams (vs3-10.mail.saunalahti.fi [62.142.5.94]) by emh03-2.mail.saunalahti.fi (Postfix) with SMTP id B4E36EBEF0 for ; Fri, 7 Aug 2009 15:48:02 +0300 (EEST) Received: from emh04.mail.saunalahti.fi ([62.142.5.110]) by vs3-10.mail.saunalahti.fi ([62.142.5.94]) with SMTP (gateway) id A0573FA814C; Fri, 07 Aug 2009 15:48:02 +0300 Received: from [127.0.1.1] (a91-155-131-184.elisa-laajakaista.fi [91.155.131.184]) by emh04.mail.saunalahti.fi (Postfix) with ESMTP id A4FD341BE2 for ; Fri, 7 Aug 2009 15:48:01 +0300 (EEST) From: Kalle Valo Subject: [PATCH] omap2: compile usb-tusb6010.c To: linux-omap@vger.kernel.org Date: Fri, 07 Aug 2009 15:48:01 +0300 Message-ID: <20090807124801.3164.35116.stgit@tikku> User-Agent: StGIT/0.14.2 MIME-Version: 1.0 X-Antivirus: VAMS Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org For some reason usb-tusb6010.c was't compiled, add it to Makefile and Kconfig. This is prepraration for upcoming n8x0 support. Signed-off-by: Kalle Valo --- arch/arm/mach-omap2/Kconfig | 5 +++++ arch/arm/mach-omap2/Makefile | 1 + 2 files changed, 6 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig index a755eb5..bf54686 100644 --- a/arch/arm/mach-omap2/Kconfig +++ b/arch/arm/mach-omap2/Kconfig @@ -31,6 +31,11 @@ config MACH_OMAP_GENERIC bool "Generic OMAP board" depends on ARCH_OMAP2 && ARCH_OMAP24XX +config MACH_OMAP2_TUSB6010 + bool + depends on ARCH_OMAP2 && ARCH_OMAP2420 + default y if MACH_NOKIA_N8X0 + config MACH_OMAP_H4 bool "OMAP 2420 H4 board" depends on ARCH_OMAP2 && ARCH_OMAP24XX diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index 735bae5..757c84b 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile @@ -74,6 +74,7 @@ obj-$(CONFIG_MACH_OMAP_4430SDP) += board-4430sdp.o # Platform specific device init code obj-y += usb-musb.o +obj-$(CONFIG_MACH_OMAP2_TUSB6010) += usb-tusb6010.o onenand-$(CONFIG_MTD_ONENAND_OMAP2) := gpmc-onenand.o obj-y += $(onenand-m) $(onenand-y)