diff options
author | Tony Lindgren <tony@atomide.com> | 2015-01-14 17:37:15 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2015-01-14 17:37:15 -0800 |
commit | e226ebe95e7afb79ff24c53f9984b8acad13cc81 (patch) | |
tree | c197851102d69a17965ae7eddb6699fdbf3d8a63 /arch/arm/mach-omap2/id.c | |
parent | 339d095ab23cf5de223c9633ee4d3ec1794282af (diff) | |
download | linux-e226ebe95e7afb79ff24c53f9984b8acad13cc81.tar.bz2 |
ARM: OMAP2+: Fix ti81xx devtype
Otherwise we get error "Cannot detect omap type!" and many
things can fail with following:
Unhandled fault: imprecise external abort (0xc06) at 0xc6031fb0
This is because the omap_type is being used to set up th SoC
specific functions for omaps.
Cc: Brian Hutchinson <b.hutchman@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/id.c')
-rw-r--r-- | arch/arm/mach-omap2/id.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index c25feba05818..2a2f4d56e4c8 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c @@ -56,6 +56,8 @@ int omap_type(void) if (cpu_is_omap24xx()) { val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS); + } else if (cpu_is_ti81xx()) { + val = omap_ctrl_readl(TI81XX_CONTROL_STATUS); } else if (soc_is_am33xx() || soc_is_am43xx()) { val = omap_ctrl_readl(AM33XX_CONTROL_STATUS); } else if (cpu_is_omap34xx()) { |