Re: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-07-10 Thread Tony Lindgren
* Hiremath, Vaibhav hvaib...@ti.com [120627 13:37]: --- a/arch/arm/plat-omap/include/plat/cpu.h +++ b/arch/arm/plat-omap/include/plat/cpu.h @@ -42,7 +42,14 @@ #define OMAP2_DEVICE_TYPE_GP 3 #define OMAP2_DEVICE_TYPE_BAD 4 +#ifdef CONFIG_ARCH_OMAP2PLUS int

RE: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-07-10 Thread Hiremath, Vaibhav
On Tue, Jul 10, 2012 at 14:11:08, Tony Lindgren wrote: * Hiremath, Vaibhav hvaib...@ti.com [120627 13:37]: --- a/arch/arm/plat-omap/include/plat/cpu.h +++ b/arch/arm/plat-omap/include/plat/cpu.h @@ -42,7 +42,14 @@ #define OMAP2_DEVICE_TYPE_GP 3 #define OMAP2_DEVICE_TYPE_BAD

Re: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-07-10 Thread Tony Lindgren
* Hiremath, Vaibhav hvaib...@ti.com [120710 02:15]: On Tue, Jul 10, 2012 at 14:11:08, Tony Lindgren wrote: * Hiremath, Vaibhav hvaib...@ti.com [120627 13:37]: --- a/arch/arm/plat-omap/include/plat/cpu.h +++ b/arch/arm/plat-omap/include/plat/cpu.h @@ -42,7 +42,14 @@ #define

RE: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-07-10 Thread Hiremath, Vaibhav
On Tue, Jul 10, 2012 at 14:48:21, Tony Lindgren wrote: * Hiremath, Vaibhav hvaib...@ti.com [120710 02:15]: On Tue, Jul 10, 2012 at 14:11:08, Tony Lindgren wrote: * Hiremath, Vaibhav hvaib...@ti.com [120627 13:37]: --- a/arch/arm/plat-omap/include/plat/cpu.h +++

Re: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-07-10 Thread Tony Lindgren
* Hiremath, Vaibhav hvaib...@ti.com [120710 02:29]: On Tue, Jul 10, 2012 at 14:48:21, Tony Lindgren wrote: We have quite a few initcalls that exit early with various soc_is, cpu_is, cpu_class_is tests that would fail for multi zImage kernels. Some of these have been patched away with

Re: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-06-27 Thread Tony Lindgren
* Hiremath, Vaibhav hvaib...@ti.com [120614 07:37]: On Mon, Jun 11, 2012 at 18:52:54, Hiremath, Vaibhav wrote: As omap1 and omap2 will never be compiled together, due to different compiler flags, so we can simply make cpu_class_is_omap2() = true, for all non-omap1 platforms.

RE: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-06-27 Thread Hiremath, Vaibhav
On Wed, Jun 27, 2012 at 19:09:50, Tony Lindgren wrote: * Hiremath, Vaibhav hvaib...@ti.com [120614 07:37]: On Mon, Jun 11, 2012 at 18:52:54, Hiremath, Vaibhav wrote: As omap1 and omap2 will never be compiled together, due to different compiler flags, so we can simply make

Re: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-06-27 Thread Tony Lindgren
* Hiremath, Vaibhav hvaib...@ti.com [120627 06:54]: There are few cleanup patches pending for your review, it would be good if you provide your review comments. Hmm care to post the Subject: lines for those? I may have marked something as read accidentally.. Tony -- To unsubscribe from this

RE: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-06-27 Thread Hiremath, Vaibhav
On Wed, Jun 27, 2012 at 19:28:17, Tony Lindgren wrote: * Hiremath, Vaibhav hvaib...@ti.com [120627 06:54]: There are few cleanup patches pending for your review, it would be good if you provide your review comments. Hmm care to post the Subject: lines for those? I may have marked

Re: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-06-27 Thread Tony Lindgren
* Tony Lindgren t...@atomide.com [120627 06:44]: * Hiremath, Vaibhav hvaib...@ti.com [120614 07:37]: On Mon, Jun 11, 2012 at 18:52:54, Hiremath, Vaibhav wrote: As omap1 and omap2 will never be compiled together, due to different compiler flags, so we can simply make

RE: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-06-27 Thread Hiremath, Vaibhav
On Wed, Jun 27, 2012 at 21:47:45, Tony Lindgren wrote: * Tony Lindgren t...@atomide.com [120627 06:44]: * Hiremath, Vaibhav hvaib...@ti.com [120614 07:37]: On Mon, Jun 11, 2012 at 18:52:54, Hiremath, Vaibhav wrote: As omap1 and omap2 will never be compiled together, due to different

RE: [PATCH] ARM: OMAP2+: cpu: Make cpu_class_is_omap2 true for all non-omap1 platforms

2012-06-14 Thread Hiremath, Vaibhav
On Mon, Jun 11, 2012 at 18:52:54, Hiremath, Vaibhav wrote: As omap1 and omap2 will never be compiled together, due to different compiler flags, so we can simply make cpu_class_is_omap2() = true, for all non-omap1 platforms. Signed-off-by: Vaibhav Hiremath hvaib...@ti.com ---