From patchwork Sun May 23 00:11:08 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Kucheria X-Patchwork-Id: 101692 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o4N0B3tl000736 for ; Sun, 23 May 2010 00:11:03 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755544Ab0EWAKs (ORCPT ); Sat, 22 May 2010 20:10:48 -0400 Received: from mail-fx0-f46.google.com ([209.85.161.46]:47855 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755516Ab0EWAKr (ORCPT ); Sat, 22 May 2010 20:10:47 -0400 Received: by fxm5 with SMTP id 5so1688268fxm.19 for ; Sat, 22 May 2010 17:10:45 -0700 (PDT) Received: by 10.223.54.143 with SMTP id q15mr3098156fag.16.1274573445614; Sat, 22 May 2010 17:10:45 -0700 (PDT) Received: from localhost (a91-154-124-12.elisa-laajakaista.fi [91.154.124.12]) by mx.google.com with ESMTPS id j23sm11804346faa.14.2010.05.22.17.10.44 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 22 May 2010 17:10:44 -0700 (PDT) Date: Sun, 23 May 2010 03:11:08 +0300 From: Amit Kucheria To: tony@atomide.com Cc: linux-omap@vger.kernel.org, ajay.gupta@ti.com Subject: omap: Build failure with tip of Linus' tree Message-ID: <20100523001108.GB15859@matterhorn.lan> Mail-Followup-To: tony@atomide.com, linux-omap@vger.kernel.org, ajay.gupta@ti.com MIME-Version: 1.0 Content-Disposition: inline X-URL: http://www.verdurent.com/ User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Sun, 23 May 2010 00:11:04 +0000 (UTC) From 0222c29661c9a36dcf3a1b2786b62b0080b9dc88 Mon Sep 17 00:00:00 2001 Message-Id: <0222c29661c9a36dcf3a1b2786b62b0080b9dc88.1274572962.git.amit.kucheria@canonical.com> From: Amit Kucheria Date: Sun, 23 May 2010 03:00:51 +0300 Subject: [PATCH] omap: fix build failure due to missing include dma-mapping.h Fixes following error, CC arch/arm/mach-omap2/usb-ehci.o arch/arm/mach-omap2/usb-ehci.c:263: error: implicit declaration of function 'DMA_BIT_MASK' arch/arm/mach-omap2/usb-ehci.c:263: error: initializer element is not constant make[1]: *** [arch/arm/mach-omap2/usb-ehci.o] Error 1 Signed-off-by: Amit Kucheria --- arch/arm/mach-omap2/usb-ehci.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/usb-ehci.c b/arch/arm/mach-omap2/usb-ehci.c index c68f799..d72d1ac 100644 --- a/arch/arm/mach-omap2/usb-ehci.c +++ b/arch/arm/mach-omap2/usb-ehci.c @@ -20,6 +20,8 @@ #include #include #include +#include + #include #include -- 1.7.0.4