From mboxrd@z Thu Jan 1 00:00:00 1970 From: paul.gortmaker@windriver.com (Paul Gortmaker) Date: Wed, 6 May 2015 10:59:01 -0400 Subject: [PATCH 02/11] arm/mach-keystone: remove legacy __cpuinit sections that crept in In-Reply-To: <20150506103704.GJ2067@n2100.arm.linux.org.uk> References: <1430174880-27958-1-git-send-email-paul.gortmaker@windriver.com> <1430174880-27958-3-git-send-email-paul.gortmaker@windriver.com> <20150506103704.GJ2067@n2100.arm.linux.org.uk> Message-ID: <20150506145901.GB12108@windriver.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org [Re: [PATCH 02/11] arm/mach-keystone: remove legacy __cpuinit sections that crept in] On 06/05/2015 (Wed 11:37) Russell King - ARM Linux wrote: > On Mon, Apr 27, 2015 at 06:47:51PM -0400, Paul Gortmaker wrote: > > We removed __cpuinit support (leaving no-op stubs) quite some time > > ago. However two crept back in as of commit 5eb3da7246a5b2dfac9f38 > > ("ARM: keystone: Switch over to coherent memory address space") > > > > Since we want to clobber the stubs too, get these removed now. > > > > Cc: Santosh Shilimkar > > Santosh's email is now: Santosh Shilimkar Thanks - will fix locally and ensure that is what goes into linux-next etc. but won't bother respamming everyone with the whole series for it. P. -- > > > Cc: linux-arm-kernel at lists.infradead.org > > Signed-off-by: Paul Gortmaker > > --- > > arch/arm/mach-keystone/platsmp.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/arch/arm/mach-keystone/platsmp.c b/arch/arm/mach-keystone/platsmp.c > > index 5f46a7cf907b..7f99550cad46 100644 > > --- a/arch/arm/mach-keystone/platsmp.c > > +++ b/arch/arm/mach-keystone/platsmp.c > > @@ -40,14 +40,14 @@ static int keystone_smp_boot_secondary(unsigned int cpu, > > } > > > > #ifdef CONFIG_ARM_LPAE > > -static void __cpuinit keystone_smp_secondary_initmem(unsigned int cpu) > > +static void keystone_smp_secondary_initmem(unsigned int cpu) > > { > > pgd_t *pgd0 = pgd_offset_k(0); > > cpu_set_ttbr(1, __pa(pgd0) + TTBR1_OFFSET); > > local_flush_tlb_all(); > > } > > #else > > -static inline void __cpuinit keystone_smp_secondary_initmem(unsigned int cpu) > > +static inline void keystone_smp_secondary_initmem(unsigned int cpu) > > {} > > #endif > > > > -- > > 2.2.1 > > > > > > _______________________________________________ > > linux-arm-kernel mailing list > > linux-arm-kernel at lists.infradead.org > > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel > > -- > FTTC broadband for 0.8mile line: currently at 10.5Mbps down 400kbps up > according to speedtest.net. From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752665AbbEFPBF (ORCPT ); Wed, 6 May 2015 11:01:05 -0400 Received: from mail1.windriver.com ([147.11.146.13]:45006 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751034AbbEFPBD (ORCPT ); Wed, 6 May 2015 11:01:03 -0400 Date: Wed, 6 May 2015 10:59:01 -0400 From: Paul Gortmaker To: Russell King - ARM Linux CC: Santosh Shilimkar , , Subject: Re: [PATCH 02/11] arm/mach-keystone: remove legacy __cpuinit sections that crept in Message-ID: <20150506145901.GB12108@windriver.com> References: <1430174880-27958-1-git-send-email-paul.gortmaker@windriver.com> <1430174880-27958-3-git-send-email-paul.gortmaker@windriver.com> <20150506103704.GJ2067@n2100.arm.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20150506103704.GJ2067@n2100.arm.linux.org.uk> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org [Re: [PATCH 02/11] arm/mach-keystone: remove legacy __cpuinit sections that crept in] On 06/05/2015 (Wed 11:37) Russell King - ARM Linux wrote: > On Mon, Apr 27, 2015 at 06:47:51PM -0400, Paul Gortmaker wrote: > > We removed __cpuinit support (leaving no-op stubs) quite some time > > ago. However two crept back in as of commit 5eb3da7246a5b2dfac9f38 > > ("ARM: keystone: Switch over to coherent memory address space") > > > > Since we want to clobber the stubs too, get these removed now. > > > > Cc: Santosh Shilimkar > > Santosh's email is now: Santosh Shilimkar Thanks - will fix locally and ensure that is what goes into linux-next etc. but won't bother respamming everyone with the whole series for it. P. -- > > > Cc: linux-arm-kernel@lists.infradead.org > > Signed-off-by: Paul Gortmaker > > --- > > arch/arm/mach-keystone/platsmp.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/arch/arm/mach-keystone/platsmp.c b/arch/arm/mach-keystone/platsmp.c > > index 5f46a7cf907b..7f99550cad46 100644 > > --- a/arch/arm/mach-keystone/platsmp.c > > +++ b/arch/arm/mach-keystone/platsmp.c > > @@ -40,14 +40,14 @@ static int keystone_smp_boot_secondary(unsigned int cpu, > > } > > > > #ifdef CONFIG_ARM_LPAE > > -static void __cpuinit keystone_smp_secondary_initmem(unsigned int cpu) > > +static void keystone_smp_secondary_initmem(unsigned int cpu) > > { > > pgd_t *pgd0 = pgd_offset_k(0); > > cpu_set_ttbr(1, __pa(pgd0) + TTBR1_OFFSET); > > local_flush_tlb_all(); > > } > > #else > > -static inline void __cpuinit keystone_smp_secondary_initmem(unsigned int cpu) > > +static inline void keystone_smp_secondary_initmem(unsigned int cpu) > > {} > > #endif > > > > -- > > 2.2.1 > > > > > > _______________________________________________ > > linux-arm-kernel mailing list > > linux-arm-kernel@lists.infradead.org > > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel > > -- > FTTC broadband for 0.8mile line: currently at 10.5Mbps down 400kbps up > according to speedtest.net.