From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [PATCH] ARM: mach-omap2: board-generic: fix undefined symbol Date: Tue, 8 Oct 2013 10:41:49 -0700 Message-ID: <20131008174149.GB8313@atomide.com> References: <5253C759.5020406@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mho-03-ewr.mailhop.org ([204.13.248.66]:27937 "EHLO mho-01-ewr.mailhop.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755554Ab3JHRlw (ORCPT ); Tue, 8 Oct 2013 13:41:52 -0400 Content-Disposition: inline In-Reply-To: <5253C759.5020406@gmail.com> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Simon Barth Cc: Russell King , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org * Simon Barth [131008 01:58]: > Since dra7 reuses the function 'omap5_realtime_timer_init' in > arch/arm/mach-omap2/board-generic.c as timer init function, it has to be > built for this SoC as well. Thanks applying into omap-for-v3.12/fixes. Regards, Tony > Signed-off-by: Simon Barth > --- > arch/arm/mach-omap2/timer.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/mach-omap2/timer.c b/arch/arm/mach-omap2/timer.c > index fa74a06..ead48fa 100644 > --- a/arch/arm/mach-omap2/timer.c > +++ b/arch/arm/mach-omap2/timer.c > @@ -628,7 +628,7 @@ void __init omap4_local_timer_init(void) > #endif /* CONFIG_HAVE_ARM_TWD */ > #endif /* CONFIG_ARCH_OMAP4 */ > > -#ifdef CONFIG_SOC_OMAP5 > +#if defined(CONFIG_SOC_OMAP5) || defined(CONFIG_SOC_DRA7XX) > void __init omap5_realtime_timer_init(void) > { > omap4_sync32k_timer_init(); > @@ -636,7 +636,7 @@ void __init omap5_realtime_timer_init(void) > > clocksource_of_init(); > } > -#endif /* CONFIG_SOC_OMAP5 */ > +#endif /* CONFIG_SOC_OMAP5 || CONFIG_SOC_DRA7XX */ > > /** > * omap_timer_init - build and register timer device with an > -- > 1.7.9.5 From mboxrd@z Thu Jan 1 00:00:00 1970 From: tony@atomide.com (Tony Lindgren) Date: Tue, 8 Oct 2013 10:41:49 -0700 Subject: [PATCH] ARM: mach-omap2: board-generic: fix undefined symbol In-Reply-To: <5253C759.5020406@gmail.com> References: <5253C759.5020406@gmail.com> Message-ID: <20131008174149.GB8313@atomide.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org * Simon Barth [131008 01:58]: > Since dra7 reuses the function 'omap5_realtime_timer_init' in > arch/arm/mach-omap2/board-generic.c as timer init function, it has to be > built for this SoC as well. Thanks applying into omap-for-v3.12/fixes. Regards, Tony > Signed-off-by: Simon Barth > --- > arch/arm/mach-omap2/timer.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/mach-omap2/timer.c b/arch/arm/mach-omap2/timer.c > index fa74a06..ead48fa 100644 > --- a/arch/arm/mach-omap2/timer.c > +++ b/arch/arm/mach-omap2/timer.c > @@ -628,7 +628,7 @@ void __init omap4_local_timer_init(void) > #endif /* CONFIG_HAVE_ARM_TWD */ > #endif /* CONFIG_ARCH_OMAP4 */ > > -#ifdef CONFIG_SOC_OMAP5 > +#if defined(CONFIG_SOC_OMAP5) || defined(CONFIG_SOC_DRA7XX) > void __init omap5_realtime_timer_init(void) > { > omap4_sync32k_timer_init(); > @@ -636,7 +636,7 @@ void __init omap5_realtime_timer_init(void) > > clocksource_of_init(); > } > -#endif /* CONFIG_SOC_OMAP5 */ > +#endif /* CONFIG_SOC_OMAP5 || CONFIG_SOC_DRA7XX */ > > /** > * omap_timer_init - build and register timer device with an > -- > 1.7.9.5