ARM: OMAP: Remove unnecessary omap2_globals.

This patch removes unnecessary omap2_globals and pass the global structures
directly as function argument.

The proposed cleanup was suggested by Russell King <rmk+kernel@arm.linux.org.uk>

Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Santosh Shilimkar 2009-05-25 11:08:37 -07:00 committed by Tony Lindgren
parent af5703f2be
commit 00aeeffffa
1 changed files with 4 additions and 9 deletions

View File

@ -287,9 +287,7 @@ arch_initcall(omap_init_clocksource_32k);
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
static struct omap_globals *omap2_globals;
static void __init __omap2_set_globals(void)
static void __init __omap2_set_globals(struct omap_globals *omap2_globals)
{
omap2_set_globals_tap(omap2_globals);
omap2_set_globals_sdrc(omap2_globals);
@ -313,8 +311,7 @@ static struct omap_globals omap242x_globals = {
void __init omap2_set_globals_242x(void)
{
omap2_globals = &omap242x_globals;
__omap2_set_globals();
__omap2_set_globals(&omap242x_globals);
}
#endif
@ -332,8 +329,7 @@ static struct omap_globals omap243x_globals = {
void __init omap2_set_globals_243x(void)
{
omap2_globals = &omap243x_globals;
__omap2_set_globals();
__omap2_set_globals(&omap243x_globals);
}
#endif
@ -351,8 +347,7 @@ static struct omap_globals omap343x_globals = {
void __init omap2_set_globals_343x(void)
{
omap2_globals = &omap343x_globals;
__omap2_set_globals();
__omap2_set_globals(&omap343x_globals);
}
#endif