aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/common.h
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2015-01-14 20:37:16 -0500
committerTony Lindgren <tony@atomide.com>2015-01-14 20:37:16 -0500
commitc27964b5d2f3c36b0160d6d26f79f2d4730c440b (patch)
treec26967c376bdf7ad2cca0b594bc47ef23e03e9fd /arch/arm/mach-omap2/common.h
parente226ebe95e7afb79ff24c53f9984b8acad13cc81 (diff)
ARM: OMAP2+: Fix ti81xx class type
Otherwise it will return true for cpu_is_omap34xx() which we don't want for the clocks and hwmod. It's closer to am33xx for the clocks and hwmod than to the omap34xx. We also want to be able to detect 814x and 816x separately as at least the clocks are different with 814x using a apll and 816x using a fapll for the source clocks. Note that we can also remove omap3xxx_clk_init() call as it's wrong and ti81xx are booting in device tree only mode. Cc: Brian Hutchinson <b.hutchman@gmail.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/common.h')
-rw-r--r--arch/arm/mach-omap2/common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h
index 377eea849e7b..900ebdd544a0 100644
--- a/arch/arm/mach-omap2/common.h
+++ b/arch/arm/mach-omap2/common.h
@@ -110,7 +110,8 @@ void omap3630_init_early(void);
110void omap3_init_early(void); /* Do not use this one */ 110void omap3_init_early(void); /* Do not use this one */
111void am33xx_init_early(void); 111void am33xx_init_early(void);
112void am35xx_init_early(void); 112void am35xx_init_early(void);
113void ti81xx_init_early(void); 113void ti814x_init_early(void);
114void ti816x_init_early(void);
114void am33xx_init_early(void); 115void am33xx_init_early(void);
115void am43xx_init_early(void); 116void am43xx_init_early(void);
116void am43xx_init_late(void); 117void am43xx_init_late(void);