From patchwork Sat May 22 17:14:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Contreras X-Patchwork-Id: 101660 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 o4MHFCnQ017302 for ; Sat, 22 May 2010 17:15:15 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755985Ab0EVRPH (ORCPT ); Sat, 22 May 2010 13:15:07 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:55289 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755785Ab0EVRPE (ORCPT ); Sat, 22 May 2010 13:15:04 -0400 Received: by mail-bw0-f46.google.com with SMTP id 7so383709bwz.19 for ; Sat, 22 May 2010 10:15:02 -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=leTfyfO3dw1HxZdK+pfdpHnHVB6VQnTLRx+h8rYxZy0=; b=LYa2CyG7KAxQAs5JfKEaYexxfMPzOWumaM13vnyc4HbqSz+9djcjuX/v6AG3sCOOR3 WycFk7RDzSng/AC+bvLa5GYomIEV2n2Zv/ATh7XNHETFUB120u6qd7hz50hBL6t01TKt LQgGMD+S/jO5zI9q3JGEt/mlFSWTcr8W/+lrQ= 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=Q/qi9YDcfhZ1ap+4xe0QM2EzlanqP6QIQH/x9uf63zf0MqV+amBuEFboCWu+HMShS+ cPyM43aCy6gzwE/hkKHI052ADxXvEF/FgcYWFM7JWilx2NLtVKXTMfV1B/gyK7WBH2ZY 2YgFxIenau4A556jYgcvXSdmf39zx+5xIs2RM= Received: by 10.204.74.98 with SMTP id t34mr576823bkj.154.1274548502246; Sat, 22 May 2010 10:15:02 -0700 (PDT) Received: from localhost (a91-153-253-80.elisa-laajakaista.fi [91.153.253.80]) by mx.google.com with ESMTPS id d5sm10193483bkd.7.2010.05.22.10.15.00 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 22 May 2010 10:15:00 -0700 (PDT) From: Felipe Contreras To: linux-omap Cc: linux-arm , Hiroshi Doyu , Tony Lindgren , Felipe Contreras Subject: [PATCH v3 14/14] omap: mailbox: reorganize headers Date: Sat, 22 May 2010 20:14:25 +0300 Message-Id: <1274548465-20208-15-git-send-email-felipe.contreras@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1274548465-20208-1-git-send-email-felipe.contreras@gmail.com> References: <1274548465-20208-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]); Sat, 22 May 2010 17:15:15 +0000 (UTC) diff --git a/arch/arm/mach-omap1/mailbox.c b/arch/arm/mach-omap1/mailbox.c index e50b3c2..fdd6cc9 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 66d366d..d46e439 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 c44fde3..9976565 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 a8e22e1..8d4c7be 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