diff options
author | Rajendra Nayak <rnayak@ti.com> | 2014-09-10 12:04:02 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2014-09-18 12:45:52 -0400 |
commit | 0616f4eeddd81a22f4a5f0cc09b0ad71b94404cf (patch) | |
tree | df2a8fc7ef6715f60e423be72868188144544c0d /arch | |
parent | d71c97e9371f690bd58e0051955f4262007840e7 (diff) |
ARM: AM335x: Get rid of unused sram init function
Remove the empty am33xx_sram_init() function.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/sram.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/arm/mach-omap2/sram.c b/arch/arm/mach-omap2/sram.c index ddf1818af228..5e45df0327bd 100644 --- a/arch/arm/mach-omap2/sram.c +++ b/arch/arm/mach-omap2/sram.c | |||
@@ -285,11 +285,6 @@ static inline int omap34xx_sram_init(void) | |||
285 | } | 285 | } |
286 | #endif /* CONFIG_ARCH_OMAP3 */ | 286 | #endif /* CONFIG_ARCH_OMAP3 */ |
287 | 287 | ||
288 | static inline int am33xx_sram_init(void) | ||
289 | { | ||
290 | return 0; | ||
291 | } | ||
292 | |||
293 | int __init omap_sram_init(void) | 288 | int __init omap_sram_init(void) |
294 | { | 289 | { |
295 | omap_detect_sram(); | 290 | omap_detect_sram(); |
@@ -299,8 +294,6 @@ int __init omap_sram_init(void) | |||
299 | omap242x_sram_init(); | 294 | omap242x_sram_init(); |
300 | else if (cpu_is_omap2430()) | 295 | else if (cpu_is_omap2430()) |
301 | omap243x_sram_init(); | 296 | omap243x_sram_init(); |
302 | else if (soc_is_am33xx()) | ||
303 | am33xx_sram_init(); | ||
304 | else if (cpu_is_omap34xx()) | 297 | else if (cpu_is_omap34xx()) |
305 | omap34xx_sram_init(); | 298 | omap34xx_sram_init(); |
306 | 299 | ||