From patchwork Fri May 14 15:01:47 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Contreras X-Patchwork-Id: 99637 X-Patchwork-Delegate: hiroshi.doyu@nokia.com 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 o4EF2X85031955 for ; Fri, 14 May 2010 15:02:33 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756120Ab0ENPCc (ORCPT ); Fri, 14 May 2010 11:02:32 -0400 Received: from mail-ew0-f216.google.com ([209.85.219.216]:33360 "EHLO mail-ew0-f216.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755915Ab0ENPCb (ORCPT ); Fri, 14 May 2010 11:02:31 -0400 Received: by mail-ew0-f216.google.com with SMTP id 8so902601ewy.28 for ; Fri, 14 May 2010 08:02:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references; bh=ySdASUZ40s05gD5vgi7dsbvHfwjb7iJOIEnZYyPhqYU=; b=qMizZVO5YSbb2IXOIIOBMZ3e5z8HwlOc/ggrxa8Q5CwROP2ks2DjQDmbKEy8Aozk73 yDvXF8X0pCtpuoU7cC7B2l4sT8WXht2UpByVGJ4GewlJka0U4KHfyNlALQb53xfPcZ3R XAi9BO3/BLiIDfmJv1bPPeAFn5T/n1ayMzwkQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=N/inlGYqOzQMMY5MxPFcg86d2eIcVfK87StvFxYYRh6eJBwdsmzJ45KnMdguDE1FZe vKj+8Lz4kn1yuJM5+UahK3xiN5TNHbW/2EGV1nemSKyUNhtYCrTYKnMZJtFm6Z1A63ba mSkO2if69FcFAmKwfAcx2/XBWB4tvlJ/Kru+I= Received: by 10.213.52.134 with SMTP id i6mr428876ebg.13.1273849349889; Fri, 14 May 2010 08:02:29 -0700 (PDT) Received: from localhost ([192.100.124.156]) by mx.google.com with ESMTPS id 16sm1314470ewy.7.2010.05.14.08.02.28 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 14 May 2010 08:02:29 -0700 (PDT) From: Felipe Contreras To: linux-omap Cc: linux-arm , Hiroshi Doyu , Tony Lindgren , Russell King , Felipe Contreras Subject: [PATCH v2 14/17] omap: mailbox: reorganize headers Date: Fri, 14 May 2010 18:01:47 +0300 Message-Id: <1273849310-32169-15-git-send-email-felipe.contreras@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1273849310-32169-1-git-send-email-felipe.contreras@gmail.com> References: <1273849310-32169-1-git-send-email-felipe.contreras@gmail.com> 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]); Fri, 14 May 2010 15:02:34 +0000 (UTC) diff --git a/arch/arm/mach-omap1/mailbox.c b/arch/arm/mach-omap1/mailbox.c index f29ba8e..f6376b9 100644 --- a/arch/arm/mach-omap1/mailbox.c +++ b/arch/arm/mach-omap1/mailbox.c @@ -9,13 +9,10 @@ * for more details. */ -#include -#include #include #include #include #include -#include #define MAILBOX_ARM2DSP1 0x00 #define MAILBOX_ARM2DSP1b 0x04 diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c index a54898a..c1a732e 100644 --- a/arch/arm/mach-omap2/mailbox.c +++ b/arch/arm/mach-omap2/mailbox.c @@ -10,7 +10,6 @@ * for more details. */ -#include #include #include #include diff --git a/arch/arm/plat-omap/include/plat/mailbox.h b/arch/arm/plat-omap/include/plat/mailbox.h index b68fdc3..cbde52a 100644 --- a/arch/arm/plat-omap/include/plat/mailbox.h +++ b/arch/arm/plat-omap/include/plat/mailbox.h @@ -3,9 +3,10 @@ #ifndef MAILBOX_H #define MAILBOX_H -#include +#include #include #include +#include #include typedef u32 mbox_msg_t; diff --git a/arch/arm/plat-omap/mailbox.c b/arch/arm/plat-omap/mailbox.c index 6b2f3b3..c7d28fa 100644 --- a/arch/arm/plat-omap/mailbox.c +++ b/arch/arm/plat-omap/mailbox.c @@ -21,10 +21,9 @@ * */ -#include -#include #include -#include +#include +#include #include #include #include