From patchwork Tue Sep 11 12:59:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 1437801 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id DEEE74025E for ; Tue, 11 Sep 2012 13:04:59 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TBQ50-0000tq-BI; Tue, 11 Sep 2012 13:00:38 +0000 Received: from moutng.kundenserver.de ([212.227.126.187]) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TBQ4X-0000nd-Kj for linux-arm-kernel@lists.infradead.org; Tue, 11 Sep 2012 13:00:11 +0000 Received: from klappe2.boeblingen.de.ibm.com (deibp9eh1--blueice3n2.emea.ibm.com [195.212.29.180]) by mrelayeu.kundenserver.de (node=mreu0) with ESMTP (Nemesis) id 0LuHL9-1Ta3q22IuV-011me7; Tue, 11 Sep 2012 15:00:01 +0200 From: Arnd Bergmann To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 10/16] ARM: vt8500: move platform_data definitions Date: Tue, 11 Sep 2012 14:59:44 +0200 Message-Id: <1347368390-31252-10-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 1.7.10 In-Reply-To: <1347368390-31252-1-git-send-email-arnd@arndb.de> References: <1347368350-31212-1-git-send-email-arnd@arndb.de> <1347368390-31252-1-git-send-email-arnd@arndb.de> X-Provags-ID: V02:K0:lDHPzoOJXpp5aaa/F4fhKBakzBNjsYb0I5wS5G63EgF pU5vWDqSdyRiyuYK5Q0vdW0V0oJPOFVxE7faBMyyvNgQNCT8pp bAvZqEGVb32Jd5aagsO8O9B8kALF6jtL00W9caZWgOj9usuXt7 eYEhK/vEAZoB/I3a3v4d00sGnELqqcc04UlUuubM3klNuX51hp vE4F9yCK1xWAdRO+5zNqdZX5QOmkxXLgJ0ms+ByabohEBxX5cg pohNulVWdGRdI6TDQUGqWMYzDLibe2Pzby5n/aVhoo9pDKlqmp PpB5+btIeM9FWeSe7lcd93nGE1/rtXTcy92QQH9JpyziOsc5Q9 MlYMW8EjVaQfnrc2o/ZMckDTYpvojtqLz46hJ46xkc9ji0zwO/ M2PRyhxvXDPf7UWbbnmsfsE4nni2YPkTZg= X-Spam-Note: CRM114 invocation failed X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.227.126.187 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Russell King , linux-kernel@vger.kernel.org, Arnd Bergmann , Florian Tobias Schandinat X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Platform data for device drivers should be defined in include/linux/platform_data/*.h, not in the architecture and platform specific directories. This moves such data out of the vt8500 include directories Signed-off-by: Arnd Bergmann Cc: Tony Prisk Cc: Florian Tobias Schandinat Acked-by: Tony Prisk --- arch/arm/mach-vt8500/devices.c | 2 +- drivers/video/vt8500lcdfb.c | 2 +- drivers/video/wm8505fb.c | 2 +- .../vt8500fb.h => include/linux/platform_data/video-vt8500lcdfb.h | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename arch/arm/mach-vt8500/include/mach/vt8500fb.h => include/linux/platform_data/video-vt8500lcdfb.h (100%) diff --git a/arch/arm/mach-vt8500/include/mach/vt8500fb.h b/include/linux/platform_data/video-vt8500lcdfb.h similarity index 100% rename from arch/arm/mach-vt8500/include/mach/vt8500fb.h rename to include/linux/platform_data/video-vt8500lcdfb.h diff --git a/arch/arm/mach-vt8500/devices.c b/arch/arm/mach-vt8500/devices.c index 1fcdc36..82b4bce 100644 --- a/arch/arm/mach-vt8500/devices.c +++ b/arch/arm/mach-vt8500/devices.c @@ -23,7 +23,7 @@ #include -#include +#include #include #include "devices.h" diff --git a/drivers/video/vt8500lcdfb.c b/drivers/video/vt8500lcdfb.c index 2a5fe6e..66a74f9 100644 --- a/drivers/video/vt8500lcdfb.c +++ b/drivers/video/vt8500lcdfb.c @@ -30,7 +30,7 @@ #include #include -#include +#include #include "vt8500lcdfb.h" #include "wmt_ge_rops.h" diff --git a/drivers/video/wm8505fb.c b/drivers/video/wm8505fb.c index c8703bd..ffeff48 100644 --- a/drivers/video/wm8505fb.c +++ b/drivers/video/wm8505fb.c @@ -29,7 +29,7 @@ #include #include -#include +#include #include "wm8505fb_regs.h" #include "wmt_ge_rops.h"