From patchwork Fri Jun 20 16:53:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 4391171 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 0B4A7BEEAA for ; Fri, 20 Jun 2014 16:56:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3E25B200E7 for ; Fri, 20 Jun 2014 16:56:43 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5F1102021F for ; Fri, 20 Jun 2014 16:56:42 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Wy24p-00089t-En; Fri, 20 Jun 2014 16:54:11 +0000 Received: from albert.telenet-ops.be ([195.130.137.90]) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Wy24H-0007tq-Sa for linux-arm-kernel@lists.infradead.org; Fri, 20 Jun 2014 16:53:40 +0000 Received: from ayla.of.borg ([84.193.72.141]) by albert.telenet-ops.be with bizsmtp id GgtC1o00e32ts5g06gtCEF; Fri, 20 Jun 2014 18:53:14 +0200 Received: from geert by ayla.of.borg with local (Exim 4.76) (envelope-from ) id 1Wy23s-0005ee-P0; Fri, 20 Jun 2014 18:53:12 +0200 From: Geert Uytterhoeven To: Simon Horman , Magnus Damm , Arnd Bergmann , Olof Johansson Subject: [PATCH 4/9] ARM: shmobile: Move r8a7778.h Date: Fri, 20 Jun 2014 18:53:04 +0200 Message-Id: <1403283189-21688-5-git-send-email-geert+renesas@glider.be> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1403283189-21688-1-git-send-email-geert+renesas@glider.be> References: <1403283189-21688-1-git-send-email-geert+renesas@glider.be> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140620_095338_148276_DC3A0DB2 X-CRM114-Status: UNSURE ( 8.63 ) X-CRM114-Notice: Please train this message. X-Spam-Score: 0.0 (/) Cc: Geert Uytterhoeven , linux-arm-kernel@lists.infradead.org, linux-sh@vger.kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Change location of r8a7778.h so it can be included as "r8a7778.h" instead of the old style Signed-off-by: Geert Uytterhoeven --- arch/arm/mach-shmobile/board-bockw-reference.c | 4 +++- arch/arm/mach-shmobile/board-bockw.c | 4 +++- arch/arm/mach-shmobile/{include/mach => }/r8a7778.h | 0 arch/arm/mach-shmobile/setup-r8a7778.c | 4 +++- 4 files changed, 9 insertions(+), 3 deletions(-) rename arch/arm/mach-shmobile/{include/mach => }/r8a7778.h (100%) diff --git a/arch/arm/mach-shmobile/board-bockw-reference.c b/arch/arm/mach-shmobile/board-bockw-reference.c index 91ff3a27ccc7..ba840cd333b9 100644 --- a/arch/arm/mach-shmobile/board-bockw-reference.c +++ b/arch/arm/mach-shmobile/board-bockw-reference.c @@ -19,9 +19,11 @@ */ #include -#include + #include + #include "common.h" +#include "r8a7778.h" /* * see board-bock.c for checking detail of dip-switch diff --git a/arch/arm/mach-shmobile/board-bockw.c b/arch/arm/mach-shmobile/board-bockw.c index 8cb057f95c44..b4e4789017bc 100644 --- a/arch/arm/mach-shmobile/board-bockw.c +++ b/arch/arm/mach-shmobile/board-bockw.c @@ -34,13 +34,15 @@ #include #include #include + #include -#include #include #include #include + #include "common.h" #include "irqs.h" +#include "r8a7778.h" #define FPGA 0x18200000 #define IRQ0MR 0x30 diff --git a/arch/arm/mach-shmobile/include/mach/r8a7778.h b/arch/arm/mach-shmobile/r8a7778.h similarity index 100% rename from arch/arm/mach-shmobile/include/mach/r8a7778.h rename to arch/arm/mach-shmobile/r8a7778.h diff --git a/arch/arm/mach-shmobile/setup-r8a7778.c b/arch/arm/mach-shmobile/setup-r8a7778.c index d9f4529d8e40..2ccc0128b469 100644 --- a/arch/arm/mach-shmobile/setup-r8a7778.c +++ b/arch/arm/mach-shmobile/setup-r8a7778.c @@ -37,11 +37,13 @@ #include #include #include -#include + #include #include + #include "common.h" #include "irqs.h" +#include "r8a7778.h" /* SCIF */ #define R8A7778_SCIF(index, baseaddr, irq) \