Rename omap_check_revision to omap1_check_revision to make it evident that this is omap1 features to check. This will allow us to introduce a omap generic check feature capability
Cc: Tony Lindgren <[email protected]> Cc: Angelo Arrifano <[email protected]> Cc: "Zebediah C. McClure" <[email protected]> Cc: Alistair Buxton <[email protected]> Cc: Paul Walmsley <[email protected]> Cc: Sanjeev Premi <[email protected]> Cc: Santosh Shilimkar <[email protected]> Cc: Senthilvadivu Gurusamy <[email protected]> Cc: Kevin Hilman <[email protected]> Cc: Tomi Valkeinen <[email protected]> Cc: Aaro Koskinen <[email protected]> Cc: Vikram Pandita <[email protected]> Cc: Vishwanath S <[email protected]> Cc: [email protected] Signed-off-by: Nishanth Menon <[email protected]> --- arch/arm/mach-omap1/id.c | 2 +- arch/arm/mach-omap1/io.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-omap1/id.c b/arch/arm/mach-omap1/id.c index a0e3560..91dbb71 100644 --- a/arch/arm/mach-omap1/id.c +++ b/arch/arm/mach-omap1/id.c @@ -118,7 +118,7 @@ static u8 __init omap_get_die_rev(void) return die_rev; } -void __init omap_check_revision(void) +void __init omap1_check_revision(void) { int i; u16 jtag_id; diff --git a/arch/arm/mach-omap1/io.c b/arch/arm/mach-omap1/io.c index f872406..0178d33 100644 --- a/arch/arm/mach-omap1/io.c +++ b/arch/arm/mach-omap1/io.c @@ -21,7 +21,7 @@ #include "clock.h" -extern void omap_check_revision(void); +extern void omap1_check_revision(void); extern void omap_sram_init(void); /* @@ -103,7 +103,7 @@ void __init omap1_map_common_io(void) /* We want to check CPU revision early for cpu_is_omapxxxx() macros. * IO space mapping must be initialized before we can do that. */ - omap_check_revision(); + omap1_check_revision(); #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850) if (cpu_is_omap7xx()) { -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
