All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: shmobile: r8a73a4: Remove ->init_machine() special case
@ 2013-07-24  3:53 ` Magnus Damm
  0 siblings, 0 replies; 4+ messages in thread
From: Magnus Damm @ 2013-07-24  3:53 UTC (permalink / raw)
  To: linux-kernel; +Cc: Magnus Damm, horms, g.liakhovetski, linux-sh

From: Magnus Damm <damm@opensource.se>

No need to special case r8a73a4 ->init_machine(),
so get rid of undesired cpufreq platform device
from the generic long term r8a73a4 DT support code.

For short term support on APE6EVM the DT reference
implementation already adds a "cpufreq-cpu0" platform
device so that can be used for development.

Regarding more long term cpufreq support, perhaps
it makes sense to adjust the cpufreq driver to check
for DT information directly instead of using a
platform device for software configuration and DT
for hardware parameters.

Signed-off-by: Magnus Damm <damm@opensource.se>
---

 arch/arm/mach-shmobile/setup-r8a73a4.c |    6 ------
 1 file changed, 6 deletions(-)

--- 0001/arch/arm/mach-shmobile/setup-r8a73a4.c
+++ work/arch/arm/mach-shmobile/setup-r8a73a4.c	2013-07-23 16:22:29.000000000 +0900
@@ -215,11 +215,6 @@ void __init r8a73a4_init_delay(void)
 }
 
 #ifdef CONFIG_USE_OF
-void __init r8a73a4_add_standard_devices_dt(void)
-{
-	platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0);
-	of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
-}
 
 static const char *r8a73a4_boards_compat_dt[] __initdata = {
 	"renesas,r8a73a4",
@@ -228,7 +223,6 @@ static const char *r8a73a4_boards_compat
 
 DT_MACHINE_START(R8A73A4_DT, "Generic R8A73A4 (Flattened Device Tree)")
 	.init_early	= r8a73a4_init_delay,
-	.init_machine	= r8a73a4_add_standard_devices_dt,
 	.init_time	= shmobile_timer_init,
 	.dt_compat	= r8a73a4_boards_compat_dt,
 MACHINE_END

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

* [PATCH] ARM: shmobile: r8a73a4: Remove ->init_machine() special case
@ 2013-07-24  3:53 ` Magnus Damm
  0 siblings, 0 replies; 4+ messages in thread
From: Magnus Damm @ 2013-07-24  3:53 UTC (permalink / raw)
  To: linux-kernel; +Cc: Magnus Damm, horms, g.liakhovetski, linux-sh

From: Magnus Damm <damm@opensource.se>

No need to special case r8a73a4 ->init_machine(),
so get rid of undesired cpufreq platform device
from the generic long term r8a73a4 DT support code.

For short term support on APE6EVM the DT reference
implementation already adds a "cpufreq-cpu0" platform
device so that can be used for development.

Regarding more long term cpufreq support, perhaps
it makes sense to adjust the cpufreq driver to check
for DT information directly instead of using a
platform device for software configuration and DT
for hardware parameters.

Signed-off-by: Magnus Damm <damm@opensource.se>
---

 arch/arm/mach-shmobile/setup-r8a73a4.c |    6 ------
 1 file changed, 6 deletions(-)

--- 0001/arch/arm/mach-shmobile/setup-r8a73a4.c
+++ work/arch/arm/mach-shmobile/setup-r8a73a4.c	2013-07-23 16:22:29.000000000 +0900
@@ -215,11 +215,6 @@ void __init r8a73a4_init_delay(void)
 }
 
 #ifdef CONFIG_USE_OF
-void __init r8a73a4_add_standard_devices_dt(void)
-{
-	platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0);
-	of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
-}
 
 static const char *r8a73a4_boards_compat_dt[] __initdata = {
 	"renesas,r8a73a4",
@@ -228,7 +223,6 @@ static const char *r8a73a4_boards_compat
 
 DT_MACHINE_START(R8A73A4_DT, "Generic R8A73A4 (Flattened Device Tree)")
 	.init_early	= r8a73a4_init_delay,
-	.init_machine	= r8a73a4_add_standard_devices_dt,
 	.init_time	= shmobile_timer_init,
 	.dt_compat	= r8a73a4_boards_compat_dt,
 MACHINE_END

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

* Re: [PATCH] ARM: shmobile: r8a73a4: Remove ->init_machine() special case
  2013-07-24  3:53 ` Magnus Damm
@ 2013-07-24  8:07   ` Simon Horman
  -1 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2013-07-24  8:07 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-kernel, g.liakhovetski, linux-sh

On Wed, Jul 24, 2013 at 12:53:15PM +0900, Magnus Damm wrote:
> From: Magnus Damm <damm@opensource.se>
> 
> No need to special case r8a73a4 ->init_machine(),
> so get rid of undesired cpufreq platform device
> from the generic long term r8a73a4 DT support code.
> 
> For short term support on APE6EVM the DT reference
> implementation already adds a "cpufreq-cpu0" platform
> device so that can be used for development.
> 
> Regarding more long term cpufreq support, perhaps
> it makes sense to adjust the cpufreq driver to check
> for DT information directly instead of using a
> platform device for software configuration and DT
> for hardware parameters.
> 
> Signed-off-by: Magnus Damm <damm@opensource.se>
> ---
> 
>  arch/arm/mach-shmobile/setup-r8a73a4.c |    6 ------
>  1 file changed, 6 deletions(-)

Thanks, I have queued this up for v3.12 in the cleanup2 branch.

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

* Re: [PATCH] ARM: shmobile: r8a73a4: Remove ->init_machine() special case
@ 2013-07-24  8:07   ` Simon Horman
  0 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2013-07-24  8:07 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-kernel, g.liakhovetski, linux-sh

On Wed, Jul 24, 2013 at 12:53:15PM +0900, Magnus Damm wrote:
> From: Magnus Damm <damm@opensource.se>
> 
> No need to special case r8a73a4 ->init_machine(),
> so get rid of undesired cpufreq platform device
> from the generic long term r8a73a4 DT support code.
> 
> For short term support on APE6EVM the DT reference
> implementation already adds a "cpufreq-cpu0" platform
> device so that can be used for development.
> 
> Regarding more long term cpufreq support, perhaps
> it makes sense to adjust the cpufreq driver to check
> for DT information directly instead of using a
> platform device for software configuration and DT
> for hardware parameters.
> 
> Signed-off-by: Magnus Damm <damm@opensource.se>
> ---
> 
>  arch/arm/mach-shmobile/setup-r8a73a4.c |    6 ------
>  1 file changed, 6 deletions(-)

Thanks, I have queued this up for v3.12 in the cleanup2 branch.

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

end of thread, other threads:[~2013-07-24  8:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-24  3:53 [PATCH] ARM: shmobile: r8a73a4: Remove ->init_machine() special case Magnus Damm
2013-07-24  3:53 ` Magnus Damm
2013-07-24  8:07 ` Simon Horman
2013-07-24  8:07   ` Simon Horman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.