From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752431AbbLJKGY (ORCPT ); Thu, 10 Dec 2015 05:06:24 -0500 Received: from mail-ob0-f182.google.com ([209.85.214.182]:33207 "EHLO mail-ob0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750790AbbLJKGW (ORCPT ); Thu, 10 Dec 2015 05:06:22 -0500 MIME-Version: 1.0 In-Reply-To: <1448469143-447355-10-git-send-email-arnd@arndb.de> References: <1448469143-447355-1-git-send-email-arnd@arndb.de> <1448469143-447355-10-git-send-email-arnd@arndb.de> Date: Thu, 10 Dec 2015 11:06:21 +0100 Message-ID: Subject: Re: [PATCH 09/10] ARM: realview: make all header files local From: Linus Walleij To: Arnd Bergmann Cc: "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , Russell King , Liviu Dudau , Sudeep Holla , Lorenzo Pieralisi Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 25, 2015 at 5:32 PM, Arnd Bergmann wrote: > Nothing includes these files any more, so we can simply move them > from arch/arm/mach-realview/include/mach/ to arch/arm/mach-realview. > > Signed-off-by: Arnd Bergmann > Acked-by: Linus Walleij This patchset has problems because the boardfiles aren't really compiled even if CONFIG_ATAGS is set. I had to apply this: diff --git a/arch/arm/mach-realview/core.c b/arch/arm/mach-realview/core.c index 7cd543b1eace..baf174542e36 100644 --- a/arch/arm/mach-realview/core.c +++ b/arch/arm/mach-realview/core.c @@ -46,7 +46,6 @@ #include #include "platform.h" -#include "irqs.h" #include diff --git a/arch/arm/mach-realview/irqs-pb1176.h b/arch/arm/mach-realview/irqs-pb1176.h index e96c63e4ac72..778edfd430e7 100644 --- a/arch/arm/mach-realview/irqs-pb1176.h +++ b/arch/arm/mach-realview/irqs-pb1176.h @@ -74,6 +74,4 @@ #define IRQ_PB1176_SCTL -1 -#endif /* CONFIG_MACH_REALVIEW_PB1176 */ - #endif /* __MACH_IRQS_PB1176_H */ Yours, Linus Walleij From mboxrd@z Thu Jan 1 00:00:00 1970 From: linus.walleij@linaro.org (Linus Walleij) Date: Thu, 10 Dec 2015 11:06:21 +0100 Subject: [PATCH 09/10] ARM: realview: make all header files local In-Reply-To: <1448469143-447355-10-git-send-email-arnd@arndb.de> References: <1448469143-447355-1-git-send-email-arnd@arndb.de> <1448469143-447355-10-git-send-email-arnd@arndb.de> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Wed, Nov 25, 2015 at 5:32 PM, Arnd Bergmann wrote: > Nothing includes these files any more, so we can simply move them > from arch/arm/mach-realview/include/mach/ to arch/arm/mach-realview. > > Signed-off-by: Arnd Bergmann > Acked-by: Linus Walleij This patchset has problems because the boardfiles aren't really compiled even if CONFIG_ATAGS is set. I had to apply this: diff --git a/arch/arm/mach-realview/core.c b/arch/arm/mach-realview/core.c index 7cd543b1eace..baf174542e36 100644 --- a/arch/arm/mach-realview/core.c +++ b/arch/arm/mach-realview/core.c @@ -46,7 +46,6 @@ #include #include "platform.h" -#include "irqs.h" #include diff --git a/arch/arm/mach-realview/irqs-pb1176.h b/arch/arm/mach-realview/irqs-pb1176.h index e96c63e4ac72..778edfd430e7 100644 --- a/arch/arm/mach-realview/irqs-pb1176.h +++ b/arch/arm/mach-realview/irqs-pb1176.h @@ -74,6 +74,4 @@ #define IRQ_PB1176_SCTL -1 -#endif /* CONFIG_MACH_REALVIEW_PB1176 */ - #endif /* __MACH_IRQS_PB1176_H */ Yours, Linus Walleij