public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] m68knommu: remove dead code
@ 2017-08-24 14:34 Alexandre Belloni
  2017-08-25  1:24 ` Greg Ungerer
  2017-08-27 11:22 ` Angelo Dureghello
  0 siblings, 2 replies; 6+ messages in thread
From: Alexandre Belloni @ 2017-08-24 14:34 UTC (permalink / raw)
  To: Greg Ungerer, Geert Uytterhoeven
  Cc: linux-m68k, linux-kernel, Alexandre Belloni

As CONFIG_RTC_DRV_M5441x doesn't exist because the driver never made it
upstream, there is no device to register. Remove code that is never
compiled and init_BSP() as it doesn't do anything.

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
 arch/m68k/coldfire/m5441x.c | 37 -------------------------------------
 1 file changed, 37 deletions(-)

diff --git a/arch/m68k/coldfire/m5441x.c b/arch/m68k/coldfire/m5441x.c
index dc589b039b62..04fd7fde9fb3 100644
--- a/arch/m68k/coldfire/m5441x.c
+++ b/arch/m68k/coldfire/m5441x.c
@@ -222,40 +222,3 @@ void __init config_BSP(char *commandp, int size)
 	m5441x_uarts_init();
 	m5441x_fec_init();
 }
-
-
-#if IS_ENABLED(CONFIG_RTC_DRV_M5441x)
-static struct resource m5441x_rtc_resources[] = {
-	{
-		.start		= MCFRTC_BASE,
-		.end		= MCFRTC_BASE + MCFRTC_SIZE - 1,
-		.flags		= IORESOURCE_MEM,
-	},
-	{
-		.start		= MCF_IRQ_RTC,
-		.end		= MCF_IRQ_RTC,
-		.flags		= IORESOURCE_IRQ,
-	},
-};
-
-static struct platform_device m5441x_rtc = {
-	.name			= "mcfrtc",
-	.id			= 0,
-	.resource		= m5441x_rtc_resources,
-	.num_resources		= ARRAY_SIZE(m5441x_rtc_resources),
-};
-#endif
-
-static struct platform_device *m5441x_devices[] __initdata = {
-#if IS_ENABLED(CONFIG_RTC_DRV_M5441x)
-	&m5441x_rtc,
-#endif
-};
-
-static int __init init_BSP(void)
-{
-	platform_add_devices(m5441x_devices, ARRAY_SIZE(m5441x_devices));
-	return 0;
-}
-
-arch_initcall(init_BSP);
-- 
2.14.1

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

* Re: [PATCH] m68knommu: remove dead code
  2017-08-24 14:34 [PATCH] m68knommu: remove dead code Alexandre Belloni
@ 2017-08-25  1:24 ` Greg Ungerer
  2017-08-27 11:22 ` Angelo Dureghello
  1 sibling, 0 replies; 6+ messages in thread
From: Greg Ungerer @ 2017-08-25  1:24 UTC (permalink / raw)
  To: Alexandre Belloni, Geert Uytterhoeven; +Cc: linux-m68k, linux-kernel

Hi Alexandre,

On 25/08/17 00:34, Alexandre Belloni wrote:
> As CONFIG_RTC_DRV_M5441x doesn't exist because the driver never made it
> upstream, there is no device to register. Remove code that is never
> compiled and init_BSP() as it doesn't do anything.
> 
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>

Looks good, thanks. I have applied to m68knommu git tree, for-next branch.

Regards
Greg



> ---
>  arch/m68k/coldfire/m5441x.c | 37 -------------------------------------
>  1 file changed, 37 deletions(-)
> 
> diff --git a/arch/m68k/coldfire/m5441x.c b/arch/m68k/coldfire/m5441x.c
> index dc589b039b62..04fd7fde9fb3 100644
> --- a/arch/m68k/coldfire/m5441x.c
> +++ b/arch/m68k/coldfire/m5441x.c
> @@ -222,40 +222,3 @@ void __init config_BSP(char *commandp, int size)
>  	m5441x_uarts_init();
>  	m5441x_fec_init();
>  }
> -
> -
> -#if IS_ENABLED(CONFIG_RTC_DRV_M5441x)
> -static struct resource m5441x_rtc_resources[] = {
> -	{
> -		.start		= MCFRTC_BASE,
> -		.end		= MCFRTC_BASE + MCFRTC_SIZE - 1,
> -		.flags		= IORESOURCE_MEM,
> -	},
> -	{
> -		.start		= MCF_IRQ_RTC,
> -		.end		= MCF_IRQ_RTC,
> -		.flags		= IORESOURCE_IRQ,
> -	},
> -};
> -
> -static struct platform_device m5441x_rtc = {
> -	.name			= "mcfrtc",
> -	.id			= 0,
> -	.resource		= m5441x_rtc_resources,
> -	.num_resources		= ARRAY_SIZE(m5441x_rtc_resources),
> -};
> -#endif
> -
> -static struct platform_device *m5441x_devices[] __initdata = {
> -#if IS_ENABLED(CONFIG_RTC_DRV_M5441x)
> -	&m5441x_rtc,
> -#endif
> -};
> -
> -static int __init init_BSP(void)
> -{
> -	platform_add_devices(m5441x_devices, ARRAY_SIZE(m5441x_devices));
> -	return 0;
> -}
> -
> -arch_initcall(init_BSP);
> 

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

* Re: [PATCH] m68knommu: remove dead code
  2017-08-24 14:34 [PATCH] m68knommu: remove dead code Alexandre Belloni
  2017-08-25  1:24 ` Greg Ungerer
@ 2017-08-27 11:22 ` Angelo Dureghello
  2017-08-27 19:09   ` Alexandre Belloni
  1 sibling, 1 reply; 6+ messages in thread
From: Angelo Dureghello @ 2017-08-27 11:22 UTC (permalink / raw)
  To: Alexandre Belloni, Greg Ungerer, Geert Uytterhoeven
  Cc: linux-m68k, linux-kernel

Hi,

just to inform you that i have in mind to add spi(soon, at least seems
just a matter con Kconfig changes) and usdhc(later)
drivers/support for stmark2 mcf5441x based board.
But no problem, in case i'll re-add the this code as needed.

On 24/08/2017 16:34, Alexandre Belloni wrote:
> As CONFIG_RTC_DRV_M5441x doesn't exist because the driver never made it
> upstream, there is no device to register. Remove code that is never
> compiled and init_BSP() as it doesn't do anything.
> 
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
>   arch/m68k/coldfire/m5441x.c | 37 -------------------------------------
>   1 file changed, 37 deletions(-)
> 
> diff --git a/arch/m68k/coldfire/m5441x.c b/arch/m68k/coldfire/m5441x.c
> index dc589b039b62..04fd7fde9fb3 100644
> --- a/arch/m68k/coldfire/m5441x.c
> +++ b/arch/m68k/coldfire/m5441x.c
> @@ -222,40 +222,3 @@ void __init config_BSP(char *commandp, int size)
>   	m5441x_uarts_init();
>   	m5441x_fec_init();
>   }
> -
> -
> -#if IS_ENABLED(CONFIG_RTC_DRV_M5441x)
> -static struct resource m5441x_rtc_resources[] = {
> -	{
> -		.start		= MCFRTC_BASE,
> -		.end		= MCFRTC_BASE + MCFRTC_SIZE - 1,
> -		.flags		= IORESOURCE_MEM,
> -	},
> -	{
> -		.start		= MCF_IRQ_RTC,
> -		.end		= MCF_IRQ_RTC,
> -		.flags		= IORESOURCE_IRQ,
> -	},
> -};
> -
> -static struct platform_device m5441x_rtc = {
> -	.name			= "mcfrtc",
> -	.id			= 0,
> -	.resource		= m5441x_rtc_resources,
> -	.num_resources		= ARRAY_SIZE(m5441x_rtc_resources),
> -};
> -#endif
> -
> -static struct platform_device *m5441x_devices[] __initdata = {
> -#if IS_ENABLED(CONFIG_RTC_DRV_M5441x)
> -	&m5441x_rtc,
> -#endif
> -};
> -
> -static int __init init_BSP(void)
> -{
> -	platform_add_devices(m5441x_devices, ARRAY_SIZE(m5441x_devices));
> -	return 0;
> -}
> -
> -arch_initcall(init_BSP);
> 

Regards,
Angelo

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

* Re: [PATCH] m68knommu: remove dead code
  2017-08-27 11:22 ` Angelo Dureghello
@ 2017-08-27 19:09   ` Alexandre Belloni
  2017-08-27 19:36     ` Steven King
  0 siblings, 1 reply; 6+ messages in thread
From: Alexandre Belloni @ 2017-08-27 19:09 UTC (permalink / raw)
  To: Angelo Dureghello
  Cc: Greg Ungerer, Geert Uytterhoeven, linux-m68k, linux-kernel

On 27/08/2017 at 13:22:09 +0200, Angelo Dureghello wrote:
> Hi,
> 
> just to inform you that i have in mind to add spi(soon, at least seems
> just a matter con Kconfig changes) and usdhc(later)
> drivers/support for stmark2 mcf5441x based board.
> But no problem, in case i'll re-add the this code as needed.
> 

I think it is easy enough to reintroduce init_BSP with your patch. It is
unfortunate that this useless function stayed that way so long, waiting
for a real user :)

> On 24/08/2017 16:34, Alexandre Belloni wrote:
> > As CONFIG_RTC_DRV_M5441x doesn't exist because the driver never made it
> > upstream, there is no device to register. Remove code that is never
> > compiled and init_BSP() as it doesn't do anything.
> > 
> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> > ---
> >   arch/m68k/coldfire/m5441x.c | 37 -------------------------------------
> >   1 file changed, 37 deletions(-)
> > 
> > diff --git a/arch/m68k/coldfire/m5441x.c b/arch/m68k/coldfire/m5441x.c
> > index dc589b039b62..04fd7fde9fb3 100644
> > --- a/arch/m68k/coldfire/m5441x.c
> > +++ b/arch/m68k/coldfire/m5441x.c
> > @@ -222,40 +222,3 @@ void __init config_BSP(char *commandp, int size)
> >   	m5441x_uarts_init();
> >   	m5441x_fec_init();
> >   }
> > -
> > -
> > -#if IS_ENABLED(CONFIG_RTC_DRV_M5441x)
> > -static struct resource m5441x_rtc_resources[] = {
> > -	{
> > -		.start		= MCFRTC_BASE,
> > -		.end		= MCFRTC_BASE + MCFRTC_SIZE - 1,
> > -		.flags		= IORESOURCE_MEM,
> > -	},
> > -	{
> > -		.start		= MCF_IRQ_RTC,
> > -		.end		= MCF_IRQ_RTC,
> > -		.flags		= IORESOURCE_IRQ,
> > -	},
> > -};
> > -
> > -static struct platform_device m5441x_rtc = {
> > -	.name			= "mcfrtc",
> > -	.id			= 0,
> > -	.resource		= m5441x_rtc_resources,
> > -	.num_resources		= ARRAY_SIZE(m5441x_rtc_resources),
> > -};
> > -#endif
> > -
> > -static struct platform_device *m5441x_devices[] __initdata = {
> > -#if IS_ENABLED(CONFIG_RTC_DRV_M5441x)
> > -	&m5441x_rtc,
> > -#endif
> > -};
> > -
> > -static int __init init_BSP(void)
> > -{
> > -	platform_add_devices(m5441x_devices, ARRAY_SIZE(m5441x_devices));
> > -	return 0;
> > -}
> > -
> > -arch_initcall(init_BSP);
> > 
> 
> Regards,
> Angelo

-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* Re: [PATCH] m68knommu: remove dead code
  2017-08-27 19:09   ` Alexandre Belloni
@ 2017-08-27 19:36     ` Steven King
  2017-08-27 21:11       ` Alexandre Belloni
  0 siblings, 1 reply; 6+ messages in thread
From: Steven King @ 2017-08-27 19:36 UTC (permalink / raw)
  To: linux-m68k
  Cc: Alexandre Belloni, Angelo Dureghello, Greg Ungerer,
	Geert Uytterhoeven, linux-m68k, linux-kernel

On Sunday 27 August 2017 12:09:59 pm Alexandre Belloni wrote:
> On 27/08/2017 at 13:22:09 +0200, Angelo Dureghello wrote:
> > Hi,
> >
> > just to inform you that i have in mind to add spi(soon, at least seems
> > just a matter con Kconfig changes) and usdhc(later)
> > drivers/support for stmark2 mcf5441x based board.
> > But no problem, in case i'll re-add the this code as needed.
>
> I think it is easy enough to reintroduce init_BSP with your patch. It is
> unfortunate that this useless function stayed that way so long, waiting
> for a real user :)

I believe I was the original author, I dont remember why the code wasn't 
merged.  I still have the branch, if some wants to take it over and see it 
gets merged I wouldn't have any objections ;-)

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

* Re: [PATCH] m68knommu: remove dead code
  2017-08-27 19:36     ` Steven King
@ 2017-08-27 21:11       ` Alexandre Belloni
  0 siblings, 0 replies; 6+ messages in thread
From: Alexandre Belloni @ 2017-08-27 21:11 UTC (permalink / raw)
  To: Steven King
  Cc: linux-m68k, Angelo Dureghello, Greg Ungerer, Geert Uytterhoeven,
	linux-m68k, linux-kernel

On 27/08/2017 at 12:36:31 -0700, Steven King wrote:
> On Sunday 27 August 2017 12:09:59 pm Alexandre Belloni wrote:
> > On 27/08/2017 at 13:22:09 +0200, Angelo Dureghello wrote:
> > > Hi,
> > >
> > > just to inform you that i have in mind to add spi(soon, at least seems
> > > just a matter con Kconfig changes) and usdhc(later)
> > > drivers/support for stmark2 mcf5441x based board.
> > > But no problem, in case i'll re-add the this code as needed.
> >
> > I think it is easy enough to reintroduce init_BSP with your patch. It is
> > unfortunate that this useless function stayed that way so long, waiting
> > for a real user :)
> 
> I believe I was the original author, I dont remember why the code wasn't 
> merged.  I still have the branch, if some wants to take it over and see it 
> gets merged I wouldn't have any objections ;-)

There were comments from Geert that were not addressed:
http://patchwork.ozlabs.org/patch/165328/

-- 
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

end of thread, other threads:[~2017-08-27 21:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-24 14:34 [PATCH] m68knommu: remove dead code Alexandre Belloni
2017-08-25  1:24 ` Greg Ungerer
2017-08-27 11:22 ` Angelo Dureghello
2017-08-27 19:09   ` Alexandre Belloni
2017-08-27 19:36     ` Steven King
2017-08-27 21:11       ` Alexandre Belloni

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