public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MIPS: ath79: fix build failure
@ 2016-03-30 15:29 Sudip Mukherjee
  2016-03-30 19:13 ` Antony Pavlov
  0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2016-03-30 15:29 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips, linux-kernel, Sudip Mukherjee, Antony Pavlov

The ath79_defconfig build of mips was faling with the errors:

arch/mips/ath79/setup.c: In function 'plat_mem_setup':
arch/mips/ath79/setup.c:226:20: error: invalid storage class for function 'ath79_of_plat_time_init'
 static void __init ath79_of_plat_time_init(void)
                    ^
arch/mips/ath79/setup.c:226:1: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement]
 static void __init ath79_of_plat_time_init(void)
 ^
arch/mips/ath79/setup.c:284:20: error: invalid storage class for function 'ath79_setup'
 static  __init int ath79_setup(void)
                    ^
arch/mips/ath79/setup.c:299:1: error: initializer element is not constant
 arch_initcall(ath79_setup);

It turns out to be a simple error of a missed closing brace.

Fixes: f63ba725caa7 ("MIPS: ath79: Disable platform code for OF boards.")
Cc: Antony Pavlov <antonynpavlov@gmail.com>
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
---

Build log of next-20160330 is at:
https://travis-ci.org/sudipm-mukherjee/parport/jobs/119417999

 arch/mips/ath79/setup.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c
index 897f49a..e0ff6f3 100644
--- a/arch/mips/ath79/setup.c
+++ b/arch/mips/ath79/setup.c
@@ -214,6 +214,7 @@ void __init plat_mem_setup(void)
 						 AR71XX_PLL_SIZE);
 		ath79_detect_sys_type();
 		ath79_ddr_ctrl_init();
+	}
 
 	detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
 	/* OF machines should use the reset driver */
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] MIPS: ath79: fix build failure
  2016-03-30 15:29 [PATCH] MIPS: ath79: fix build failure Sudip Mukherjee
@ 2016-03-30 19:13 ` Antony Pavlov
  2016-03-30 21:56   ` Ralf Baechle
  0 siblings, 1 reply; 4+ messages in thread
From: Antony Pavlov @ 2016-03-30 19:13 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: Ralf Baechle, linux-mips, linux-kernel

On Wed, 30 Mar 2016 16:29:49 +0100
Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote:

> The ath79_defconfig build of mips was faling with the errors:
> 
> arch/mips/ath79/setup.c: In function 'plat_mem_setup':
> arch/mips/ath79/setup.c:226:20: error: invalid storage class for function 'ath79_of_plat_time_init'
>  static void __init ath79_of_plat_time_init(void)
>                     ^
> arch/mips/ath79/setup.c:226:1: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement]
>  static void __init ath79_of_plat_time_init(void)
>  ^
> arch/mips/ath79/setup.c:284:20: error: invalid storage class for function 'ath79_setup'
>  static  __init int ath79_setup(void)
>                     ^
> arch/mips/ath79/setup.c:299:1: error: initializer element is not constant
>  arch_initcall(ath79_setup);
> 
> It turns out to be a simple error of a missed closing brace.
> 
> Fixes: f63ba725caa7 ("MIPS: ath79: Disable platform code for OF boards.")
> Cc: Antony Pavlov <antonynpavlov@gmail.com>
> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
> ---
> 
> Build log of next-20160330 is at:
> https://travis-ci.org/sudipm-mukherjee/parport/jobs/119417999
> 
>  arch/mips/ath79/setup.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c
> index 897f49a..e0ff6f3 100644
> --- a/arch/mips/ath79/setup.c
> +++ b/arch/mips/ath79/setup.c
> @@ -214,6 +214,7 @@ void __init plat_mem_setup(void)
>  						 AR71XX_PLL_SIZE);
>  		ath79_detect_sys_type();
>  		ath79_ddr_ctrl_init();
> +	}
>  
>  	detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
>  	/* OF machines should use the reset driver */

It is very strange because my original patch has this closing brace.
Please see my original patch
https://www.linux-mips.org/archives/linux-mips/2016-03/msg00267.html

Also I suppose that we have no need in detect_memory_region() if we use devicetree,
e.g.

                ath79_detect_sys_type();
                ath79_ddr_ctrl_init();
 +              detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
 +      }
  
 -      detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);


-- 
Best regards,
  Antony Pavlov

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] MIPS: ath79: fix build failure
  2016-03-30 19:13 ` Antony Pavlov
@ 2016-03-30 21:56   ` Ralf Baechle
  2016-03-31 14:08     ` Antony Pavlov
  0 siblings, 1 reply; 4+ messages in thread
From: Ralf Baechle @ 2016-03-30 21:56 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: Sudip Mukherjee, linux-mips, linux-kernel

On Wed, Mar 30, 2016 at 10:13:29PM +0300, Antony Pavlov wrote:

> It is very strange because my original patch has this closing brace.
> Please see my original patch
> https://www.linux-mips.org/archives/linux-mips/2016-03/msg00267.html

The patch didn't apply cleanly and I botched resolving it, sorry.  I folded
the fix into the patch.

> Also I suppose that we have no need in detect_memory_region() if we use devicetree,
> e.g.
> 
>                 ath79_detect_sys_type();
>                 ath79_ddr_ctrl_init();
>  +              detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
>  +      }
>   
>  -      detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);

"suppose" is a bit weak..  Should I move the detect_memory_region call?

  Ralf

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] MIPS: ath79: fix build failure
  2016-03-30 21:56   ` Ralf Baechle
@ 2016-03-31 14:08     ` Antony Pavlov
  0 siblings, 0 replies; 4+ messages in thread
From: Antony Pavlov @ 2016-03-31 14:08 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Sudip Mukherjee, linux-mips, linux-kernel

On Wed, 30 Mar 2016 23:56:18 +0200
Ralf Baechle <ralf@linux-mips.org> wrote:

> On Wed, Mar 30, 2016 at 10:13:29PM +0300, Antony Pavlov wrote:
> 
> > It is very strange because my original patch has this closing brace.
> > Please see my original patch
> > https://www.linux-mips.org/archives/linux-mips/2016-03/msg00267.html
> 
> The patch didn't apply cleanly and I botched resolving it, sorry.  I folded
> the fix into the patch.
> 
> > Also I suppose that we have no need in detect_memory_region() if we use devicetree,
> > e.g.
> > 
> >                 ath79_detect_sys_type();
> >                 ath79_ddr_ctrl_init();
> >  +              detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
> >  +      }
> >   
> >  -      detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
> 
> "suppose" is a bit weak..  Should I move the detect_memory_region call?

I have just examined lastest master from git://git.linux-mips.org/pub/scm/ralf/linux

The problem is a bit more complex. We have to move _machine_restart assignment too.

I'll send fixup in a few seconds.

Also please remove a dot from commit title.

-- 
Best regards,
  Antony Pavlov

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-03-31 14:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-30 15:29 [PATCH] MIPS: ath79: fix build failure Sudip Mukherjee
2016-03-30 19:13 ` Antony Pavlov
2016-03-30 21:56   ` Ralf Baechle
2016-03-31 14:08     ` Antony Pavlov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox