Re: [PATCH v3] ARM: OMAP: Change all cpu_is_* occurences to soc_is_*

2015-10-20 Thread Tony Lindgren
* Keerthy [151018 21:44]: > On Friday 16 October 2015 11:18 PM, Tony Lindgren wrote: > > > >I decided to rework the earlier patches by Keerthy > >to keep changes down to minimum to avoid potential errors and stick > >to just search and replace. > > > > Compile

Re: [PATCH v3] ARM: OMAP: Change all cpu_is_* occurences to soc_is_*

2015-10-18 Thread Keerthy
Hi Tony, On Friday 16 October 2015 11:18 PM, Tony Lindgren wrote: Hi, * Keerthy [151013 22:47]: --- a/arch/arm/mach-omap2/soc.h +++ b/arch/arm/mach-omap2/soc.h @@ -155,6 +155,13 @@ static inline int soc_is_omap(void) * cpu_is_omap443x(): True for OMAP4430 *

Re: [PATCH v3] ARM: OMAP: Change all cpu_is_* occurences to soc_is_*

2015-10-16 Thread Tony Lindgren
Hi, * Keerthy [151013 22:47]: > --- a/arch/arm/mach-omap2/soc.h > +++ b/arch/arm/mach-omap2/soc.h > @@ -155,6 +155,13 @@ static inline int soc_is_omap(void) > * cpu_is_omap443x():True for OMAP4430 > * cpu_is_omap446x():True for OMAP4460 > *

[PATCH v3] ARM: OMAP: Change all cpu_is_* occurences to soc_is_*

2015-10-13 Thread Keerthy
Currently apart from dra7, omap5 and amx3 all the other SoCs are identified using cpu_is_* functions which is not right since they are all SoCs(System on Chips). Hence changing the SoC identification code to use soc_is instead of cpu_is and keeping defines for cpu_is where needed. This allows us