diff options
author | Tony Lindgren <tony@atomide.com> | 2015-07-16 11:55:58 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2015-07-24 07:39:00 +0300 |
commit | 0f3ccb24c0347cd80160810df79bfa233749074e (patch) | |
tree | 16d8610ffb091147869de78586cd7c74ebd5a744 /arch/arm/mach-omap2/omap_hwmod.c | |
parent | 7e1b11d145b264fd7e7b4bf79d910272d4a1bd52 (diff) | |
download | linux-0f3ccb24c0347cd80160810df79bfa233749074e.tar.xz |
ARM: OMAP2: Add minimal dm814x hwmod support
Let's add minimal set of dm814x hwmods to have a bootable system.
Cc: Matthijs van Duin <matthijsvanduin@gmail.com>
Cc: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod.c')
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index d78c12e7cb5e..33033ff80ee7 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c @@ -3878,7 +3878,8 @@ void __init omap_hwmod_init(void) soc_ops.init_clkdm = _init_clkdm; soc_ops.update_context_lost = _omap4_update_context_lost; soc_ops.get_context_lost = _omap4_get_context_lost; - } else if (cpu_is_ti816x() || soc_is_am33xx() || soc_is_am43xx()) { + } else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() || + soc_is_am43xx()) { soc_ops.enable_module = _omap4_enable_module; soc_ops.disable_module = _omap4_disable_module; soc_ops.wait_target_ready = _omap4_wait_target_ready; |