* [PATCH] ARM: shmobile: Fix is_e2 warning
@ 2014-10-29 7:35 Magnus Damm
2014-10-29 7:42 ` Simon Horman
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Magnus Damm @ 2014-10-29 7:35 UTC (permalink / raw)
To: linux-sh
From: Magnus Damm <damm+renesas@opensource.se>
Fix "is_e2" warning introduced by:
9ce3fa6 ARM: shmobile: rcar-gen2: Add CA7 arch_timer initialization for r8a7794
Only triggers on kernel configurations that have ARCH_ARM_TIMER=n.
Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
---
arch/arm/mach-shmobile/setup-rcar-gen2.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- 0001/arch/arm/mach-shmobile/setup-rcar-gen2.c
+++ work/arch/arm/mach-shmobile/setup-rcar-gen2.c 2014-10-29 16:06:08.000000000 +0900
@@ -52,10 +52,10 @@ void __init rcar_gen2_timer_init(void)
{
#if defined(CONFIG_ARM_ARCH_TIMER) || defined(CONFIG_COMMON_CLK)
u32 mode = rcar_gen2_read_mode_pins();
- bool is_e2 = (bool)of_find_compatible_node(NULL, NULL,
- "renesas,r8a7794");
#endif
#ifdef CONFIG_ARM_ARCH_TIMER
+ bool is_e2 = (bool)of_find_compatible_node(NULL, NULL,
+ "renesas,r8a7794");
void __iomem *base;
int extal_mhz = 0;
u32 freq;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: shmobile: Fix is_e2 warning
2014-10-29 7:35 [PATCH] ARM: shmobile: Fix is_e2 warning Magnus Damm
@ 2014-10-29 7:42 ` Simon Horman
2014-10-29 7:47 ` Magnus Damm
2014-10-29 7:58 ` Simon Horman
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2014-10-29 7:42 UTC (permalink / raw)
To: linux-sh
On Wed, Oct 29, 2014 at 04:35:10PM +0900, Magnus Damm wrote:
> From: Magnus Damm <damm+renesas@opensource.se>
>
> Fix "is_e2" warning introduced by:
>
> 9ce3fa6 ARM: shmobile: rcar-gen2: Add CA7 arch_timer initialization for r8a7794
>
> Only triggers on kernel configurations that have ARCH_ARM_TIMER=n.
>
> Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
> ---
>
> arch/arm/mach-shmobile/setup-rcar-gen2.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> --- 0001/arch/arm/mach-shmobile/setup-rcar-gen2.c
> +++ work/arch/arm/mach-shmobile/setup-rcar-gen2.c 2014-10-29 16:06:08.000000000 +0900
> @@ -52,10 +52,10 @@ void __init rcar_gen2_timer_init(void)
> {
> #if defined(CONFIG_ARM_ARCH_TIMER) || defined(CONFIG_COMMON_CLK)
> u32 mode = rcar_gen2_read_mode_pins();
> - bool is_e2 = (bool)of_find_compatible_node(NULL, NULL,
> - "renesas,r8a7794");
> #endif
> #ifdef CONFIG_ARM_ARCH_TIMER
> + bool is_e2 = (bool)of_find_compatible_node(NULL, NULL,
> + "renesas,r8a7794");
> void __iomem *base;
> int extal_mhz = 0;
> u32 freq;
Not strictly related, but I wonder if we can avoid the cast by
changing the type of is_e2 to struct device_node *. Also changing
the variable name might make sense in that scenario.
Casting makes me sad.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: shmobile: Fix is_e2 warning
2014-10-29 7:35 [PATCH] ARM: shmobile: Fix is_e2 warning Magnus Damm
2014-10-29 7:42 ` Simon Horman
@ 2014-10-29 7:47 ` Magnus Damm
2014-10-29 7:58 ` Simon Horman
2 siblings, 0 replies; 4+ messages in thread
From: Magnus Damm @ 2014-10-29 7:47 UTC (permalink / raw)
To: linux-sh
Hi Simon,
On Wed, Oct 29, 2014 at 4:42 PM, Simon Horman <horms@verge.net.au> wrote:
> On Wed, Oct 29, 2014 at 04:35:10PM +0900, Magnus Damm wrote:
>> From: Magnus Damm <damm+renesas@opensource.se>
>>
>> Fix "is_e2" warning introduced by:
>>
>> 9ce3fa6 ARM: shmobile: rcar-gen2: Add CA7 arch_timer initialization for r8a7794
>>
>> Only triggers on kernel configurations that have ARCH_ARM_TIMER=n.
>>
>> Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
>> ---
>>
>> arch/arm/mach-shmobile/setup-rcar-gen2.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> --- 0001/arch/arm/mach-shmobile/setup-rcar-gen2.c
>> +++ work/arch/arm/mach-shmobile/setup-rcar-gen2.c 2014-10-29 16:06:08.000000000 +0900
>> @@ -52,10 +52,10 @@ void __init rcar_gen2_timer_init(void)
>> {
>> #if defined(CONFIG_ARM_ARCH_TIMER) || defined(CONFIG_COMMON_CLK)
>> u32 mode = rcar_gen2_read_mode_pins();
>> - bool is_e2 = (bool)of_find_compatible_node(NULL, NULL,
>> - "renesas,r8a7794");
>> #endif
>> #ifdef CONFIG_ARM_ARCH_TIMER
>> + bool is_e2 = (bool)of_find_compatible_node(NULL, NULL,
>> + "renesas,r8a7794");
>> void __iomem *base;
>> int extal_mhz = 0;
>> u32 freq;
>
> Not strictly related, but I wonder if we can avoid the cast by
> changing the type of is_e2 to struct device_node *. Also changing
> the variable name might make sense in that scenario.
>
> Casting makes me sad.
Indeed. Perhaps we can simply use "of_machine_is_compatible("renesas,r8a7794")"?
Thanks,
/ magnus
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: shmobile: Fix is_e2 warning
2014-10-29 7:35 [PATCH] ARM: shmobile: Fix is_e2 warning Magnus Damm
2014-10-29 7:42 ` Simon Horman
2014-10-29 7:47 ` Magnus Damm
@ 2014-10-29 7:58 ` Simon Horman
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2014-10-29 7:58 UTC (permalink / raw)
To: linux-sh
On Wed, Oct 29, 2014 at 04:47:20PM +0900, Magnus Damm wrote:
> Hi Simon,
>
> On Wed, Oct 29, 2014 at 4:42 PM, Simon Horman <horms@verge.net.au> wrote:
> > On Wed, Oct 29, 2014 at 04:35:10PM +0900, Magnus Damm wrote:
> >> From: Magnus Damm <damm+renesas@opensource.se>
> >>
> >> Fix "is_e2" warning introduced by:
> >>
> >> 9ce3fa6 ARM: shmobile: rcar-gen2: Add CA7 arch_timer initialization for r8a7794
> >>
> >> Only triggers on kernel configurations that have ARCH_ARM_TIMER=n.
> >>
> >> Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
> >> ---
> >>
> >> arch/arm/mach-shmobile/setup-rcar-gen2.c | 4 ++--
> >> 1 file changed, 2 insertions(+), 2 deletions(-)
> >>
> >> --- 0001/arch/arm/mach-shmobile/setup-rcar-gen2.c
> >> +++ work/arch/arm/mach-shmobile/setup-rcar-gen2.c 2014-10-29 16:06:08.000000000 +0900
> >> @@ -52,10 +52,10 @@ void __init rcar_gen2_timer_init(void)
> >> {
> >> #if defined(CONFIG_ARM_ARCH_TIMER) || defined(CONFIG_COMMON_CLK)
> >> u32 mode = rcar_gen2_read_mode_pins();
> >> - bool is_e2 = (bool)of_find_compatible_node(NULL, NULL,
> >> - "renesas,r8a7794");
> >> #endif
> >> #ifdef CONFIG_ARM_ARCH_TIMER
> >> + bool is_e2 = (bool)of_find_compatible_node(NULL, NULL,
> >> + "renesas,r8a7794");
> >> void __iomem *base;
> >> int extal_mhz = 0;
> >> u32 freq;
> >
> > Not strictly related, but I wonder if we can avoid the cast by
> > changing the type of is_e2 to struct device_node *. Also changing
> > the variable name might make sense in that scenario.
> >
> > Casting makes me sad.
>
> Indeed. Perhaps we can simply use "of_machine_is_compatible("renesas,r8a7794")"?
If so that does seem cleaner to me.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-10-29 7:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-29 7:35 [PATCH] ARM: shmobile: Fix is_e2 warning Magnus Damm
2014-10-29 7:42 ` Simon Horman
2014-10-29 7:47 ` Magnus Damm
2014-10-29 7:58 ` Simon Horman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).