* [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early()
@ 2013-08-07 22:26 Magnus Damm
2013-08-07 22:26 ` [PATCH 01/02] ARM: shmobile: Rename to r8a73a4_init_early() Magnus Damm
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Magnus Damm @ 2013-08-07 22:26 UTC (permalink / raw)
To: linux-arm-kernel
ARM: shmobile: Rename to r8a73a4/r8a7790_init_early()
[PATCH 01/02] ARM: shmobile: Rename to r8a73a4_init_early()
[PATCH 02/02] ARM: shmobile: Rename to r8a7790_init_early()
This series renames r8a73a4/r8a7790_init_delay() to
r8a73a4/r8a7790_init_early(). The reason for this is
that future SMP code will hook into these functions
which will make them handle more than just delay setup.
Signed-off-by: Magnus Damm <damm@opensource.se>
---
Written against renesas.git renesas-devel-20130806v4 and
[PATCH 00/05] ARM: shmobile: Yet another SMP series
arch/arm/mach-shmobile/board-ape6evm-reference.c | 2 +-
arch/arm/mach-shmobile/board-ape6evm.c | 2 +-
arch/arm/mach-shmobile/board-lager-reference.c | 2 +-
arch/arm/mach-shmobile/board-lager.c | 2 +-
arch/arm/mach-shmobile/include/mach/r8a73a4.h | 2 +-
arch/arm/mach-shmobile/include/mach/r8a7790.h | 2 +-
arch/arm/mach-shmobile/setup-r8a73a4.c | 4 ++--
arch/arm/mach-shmobile/setup-r8a7790.c | 4 ++--
8 files changed, 10 insertions(+), 10 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 01/02] ARM: shmobile: Rename to r8a73a4_init_early()
2013-08-07 22:26 [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early() Magnus Damm
@ 2013-08-07 22:26 ` Magnus Damm
2013-08-07 22:27 ` [PATCH 02/02] ARM: shmobile: Rename to r8a7790_init_early() Magnus Damm
2013-08-21 9:00 ` [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early() Simon Horman
2 siblings, 0 replies; 5+ messages in thread
From: Magnus Damm @ 2013-08-07 22:26 UTC (permalink / raw)
To: linux-arm-kernel
From: Magnus Damm <damm@opensource.se>
Rename r8a73a4_init_delay() into r8a73a4_init_early()
to make the function name show that more than just
delay setup may happen in the future.
Signed-off-by: Magnus Damm <damm@opensource.se>
---
arch/arm/mach-shmobile/board-ape6evm-reference.c | 2 +-
arch/arm/mach-shmobile/board-ape6evm.c | 2 +-
arch/arm/mach-shmobile/include/mach/r8a73a4.h | 2 +-
arch/arm/mach-shmobile/setup-r8a73a4.c | 4 ++--
4 files changed, 5 insertions(+), 5 deletions(-)
--- 0001/arch/arm/mach-shmobile/board-ape6evm-reference.c
+++ work/arch/arm/mach-shmobile/board-ape6evm-reference.c 2013-08-07 14:31:50.000000000 +0900
@@ -57,7 +57,7 @@ static const char *ape6evm_boards_compat
};
DT_MACHINE_START(APE6EVM_DT, "ape6evm")
- .init_early = r8a73a4_init_delay,
+ .init_early = r8a73a4_init_early,
.init_machine = ape6evm_add_standard_devices,
.dt_compat = ape6evm_boards_compat_dt,
MACHINE_END
--- 0001/arch/arm/mach-shmobile/board-ape6evm.c
+++ work/arch/arm/mach-shmobile/board-ape6evm.c 2013-08-07 14:31:50.000000000 +0900
@@ -240,7 +240,7 @@ static const char *ape6evm_boards_compat
};
DT_MACHINE_START(APE6EVM_DT, "ape6evm")
- .init_early = r8a73a4_init_delay,
+ .init_early = r8a73a4_init_early,
.init_machine = ape6evm_add_standard_devices,
.dt_compat = ape6evm_boards_compat_dt,
MACHINE_END
--- 0001/arch/arm/mach-shmobile/include/mach/r8a73a4.h
+++ work/arch/arm/mach-shmobile/include/mach/r8a73a4.h 2013-08-07 14:31:50.000000000 +0900
@@ -5,6 +5,6 @@ void r8a73a4_add_standard_devices(void);
void r8a73a4_add_dt_devices(void);
void r8a73a4_clock_init(void);
void r8a73a4_pinmux_init(void);
-void r8a73a4_init_delay(void);
+void r8a73a4_init_early(void);
#endif /* __ASM_R8A73A4_H__ */
--- 0001/arch/arm/mach-shmobile/setup-r8a73a4.c
+++ work/arch/arm/mach-shmobile/setup-r8a73a4.c 2013-08-07 14:32:08.000000000 +0900
@@ -207,7 +207,7 @@ void __init r8a73a4_add_standard_devices
r8a73a4_register_thermal();
}
-void __init r8a73a4_init_delay(void)
+void __init r8a73a4_init_early(void)
{
#ifndef CONFIG_ARM_ARCH_TIMER
shmobile_setup_delay(1500, 2, 4); /* Cortex-A15 @ 1500MHz */
@@ -222,7 +222,7 @@ static const char *r8a73a4_boards_compat
};
DT_MACHINE_START(R8A73A4_DT, "Generic R8A73A4 (Flattened Device Tree)")
- .init_early = r8a73a4_init_delay,
+ .init_early = r8a73a4_init_early,
.dt_compat = r8a73a4_boards_compat_dt,
MACHINE_END
#endif /* CONFIG_USE_OF */
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 02/02] ARM: shmobile: Rename to r8a7790_init_early()
2013-08-07 22:26 [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early() Magnus Damm
2013-08-07 22:26 ` [PATCH 01/02] ARM: shmobile: Rename to r8a73a4_init_early() Magnus Damm
@ 2013-08-07 22:27 ` Magnus Damm
2013-08-21 9:00 ` [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early() Simon Horman
2 siblings, 0 replies; 5+ messages in thread
From: Magnus Damm @ 2013-08-07 22:27 UTC (permalink / raw)
To: linux-arm-kernel
From: Magnus Damm <damm@opensource.se>
Rename r8a7790_init_delay() into r8a7790_init_early()
to make the function name show that more than just
delay setup may happen in the future.
Signed-off-by: Magnus Damm <damm@opensource.se>
---
arch/arm/mach-shmobile/board-lager-reference.c | 2 +-
arch/arm/mach-shmobile/board-lager.c | 2 +-
arch/arm/mach-shmobile/include/mach/r8a7790.h | 2 +-
arch/arm/mach-shmobile/setup-r8a7790.c | 4 ++--
4 files changed, 5 insertions(+), 5 deletions(-)
--- 0001/arch/arm/mach-shmobile/board-lager-reference.c
+++ work/arch/arm/mach-shmobile/board-lager-reference.c 2013-08-07 19:46:28.000000000 +0900
@@ -38,7 +38,7 @@ static const char *lager_boards_compat_d
};
DT_MACHINE_START(LAGER_DT, "lager")
- .init_early = r8a7790_init_delay,
+ .init_early = r8a7790_init_early,
.init_machine = lager_add_standard_devices,
.init_time = r8a7790_timer_init,
.dt_compat = lager_boards_compat_dt,
--- 0001/arch/arm/mach-shmobile/board-lager.c
+++ work/arch/arm/mach-shmobile/board-lager.c 2013-08-07 19:46:18.000000000 +0900
@@ -162,7 +162,7 @@ static const char *lager_boards_compat_d
};
DT_MACHINE_START(LAGER_DT, "lager")
- .init_early = r8a7790_init_delay,
+ .init_early = r8a7790_init_early,
.init_time = r8a7790_timer_init,
.init_machine = lager_add_standard_devices,
.dt_compat = lager_boards_compat_dt,
--- 0001/arch/arm/mach-shmobile/include/mach/r8a7790.h
+++ work/arch/arm/mach-shmobile/include/mach/r8a7790.h 2013-08-07 19:46:48.000000000 +0900
@@ -5,7 +5,7 @@ void r8a7790_add_standard_devices(void);
void r8a7790_add_dt_devices(void);
void r8a7790_clock_init(void);
void r8a7790_pinmux_init(void);
-void r8a7790_init_delay(void);
+void r8a7790_init_early(void);
void r8a7790_timer_init(void);
#define MD(nr) BIT(nr)
--- 0001/arch/arm/mach-shmobile/setup-r8a7790.c
+++ work/arch/arm/mach-shmobile/setup-r8a7790.c 2013-08-07 19:47:12.000000000 +0900
@@ -267,7 +267,7 @@ void __init r8a7790_timer_init(void)
clocksource_of_init();
}
-void __init r8a7790_init_delay(void)
+void __init r8a7790_init_early(void)
{
#ifndef CONFIG_ARM_ARCH_TIMER
shmobile_setup_delay(1300, 2, 4); /* Cortex-A15 @ 1300MHz */
@@ -282,7 +282,7 @@ static const char *r8a7790_boards_compat
};
DT_MACHINE_START(R8A7790_DT, "Generic R8A7790 (Flattened Device Tree)")
- .init_early = r8a7790_init_delay,
+ .init_early = r8a7790_init_early,
.init_time = r8a7790_timer_init,
.dt_compat = r8a7790_boards_compat_dt,
MACHINE_END
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early()
2013-08-07 22:26 [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early() Magnus Damm
2013-08-07 22:26 ` [PATCH 01/02] ARM: shmobile: Rename to r8a73a4_init_early() Magnus Damm
2013-08-07 22:27 ` [PATCH 02/02] ARM: shmobile: Rename to r8a7790_init_early() Magnus Damm
@ 2013-08-21 9:00 ` Simon Horman
2013-08-22 6:32 ` Simon Horman
2 siblings, 1 reply; 5+ messages in thread
From: Simon Horman @ 2013-08-21 9:00 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Aug 08, 2013 at 07:26:38AM +0900, Magnus Damm wrote:
> ARM: shmobile: Rename to r8a73a4/r8a7790_init_early()
>
> [PATCH 01/02] ARM: shmobile: Rename to r8a73a4_init_early()
> [PATCH 02/02] ARM: shmobile: Rename to r8a7790_init_early()
>
> This series renames r8a73a4/r8a7790_init_delay() to
> r8a73a4/r8a7790_init_early(). The reason for this is
> that future SMP code will hook into these functions
> which will make them handle more than just delay setup.
>
> Signed-off-by: Magnus Damm <damm@opensource.se>
> ---
>
> Written against renesas.git renesas-devel-20130806v4 and
> [PATCH 00/05] ARM: shmobile: Yet another SMP series
>
> arch/arm/mach-shmobile/board-ape6evm-reference.c | 2 +-
> arch/arm/mach-shmobile/board-ape6evm.c | 2 +-
> arch/arm/mach-shmobile/board-lager-reference.c | 2 +-
> arch/arm/mach-shmobile/board-lager.c | 2 +-
> arch/arm/mach-shmobile/include/mach/r8a73a4.h | 2 +-
> arch/arm/mach-shmobile/include/mach/r8a7790.h | 2 +-
> arch/arm/mach-shmobile/setup-r8a73a4.c | 4 ++--
> arch/arm/mach-shmobile/setup-r8a7790.c | 4 ++--
> 8 files changed, 10 insertions(+), 10 deletions(-)
Thanks Magnus, I have plan to queue this up in the cleanup4 branch
which will most likely happen tomorrow.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early()
2013-08-21 9:00 ` [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early() Simon Horman
@ 2013-08-22 6:32 ` Simon Horman
0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-08-22 6:32 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Aug 21, 2013 at 06:00:18PM +0900, Simon Horman wrote:
> On Thu, Aug 08, 2013 at 07:26:38AM +0900, Magnus Damm wrote:
> > ARM: shmobile: Rename to r8a73a4/r8a7790_init_early()
> >
> > [PATCH 01/02] ARM: shmobile: Rename to r8a73a4_init_early()
> > [PATCH 02/02] ARM: shmobile: Rename to r8a7790_init_early()
> >
> > This series renames r8a73a4/r8a7790_init_delay() to
> > r8a73a4/r8a7790_init_early(). The reason for this is
> > that future SMP code will hook into these functions
> > which will make them handle more than just delay setup.
> >
> > Signed-off-by: Magnus Damm <damm@opensource.se>
> > ---
> >
> > Written against renesas.git renesas-devel-20130806v4 and
> > [PATCH 00/05] ARM: shmobile: Yet another SMP series
> >
> > arch/arm/mach-shmobile/board-ape6evm-reference.c | 2 +-
> > arch/arm/mach-shmobile/board-ape6evm.c | 2 +-
> > arch/arm/mach-shmobile/board-lager-reference.c | 2 +-
> > arch/arm/mach-shmobile/board-lager.c | 2 +-
> > arch/arm/mach-shmobile/include/mach/r8a73a4.h | 2 +-
> > arch/arm/mach-shmobile/include/mach/r8a7790.h | 2 +-
> > arch/arm/mach-shmobile/setup-r8a73a4.c | 4 ++--
> > arch/arm/mach-shmobile/setup-r8a7790.c | 4 ++--
> > 8 files changed, 10 insertions(+), 10 deletions(-)
>
> Thanks Magnus, I have plan to queue this up in the cleanup4 branch
> which will most likely happen tomorrow.
It has now happened.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-08-22 6:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-07 22:26 [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early() Magnus Damm
2013-08-07 22:26 ` [PATCH 01/02] ARM: shmobile: Rename to r8a73a4_init_early() Magnus Damm
2013-08-07 22:27 ` [PATCH 02/02] ARM: shmobile: Rename to r8a7790_init_early() Magnus Damm
2013-08-21 9:00 ` [PATCH 00/02] ARM: shmobile: Rename to r8a73a4/r8a7790_init_early() Simon Horman
2013-08-22 6:32 ` 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).