summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCris Jansson <cjansson@ti.com>2012-02-02 01:32:11 +0100
committerAndy Green <andy.green@linaro.org>2012-03-13 11:20:12 +0800
commit4f61c7bdb72ec7a22395c00f11e5a010f0037712 (patch)
tree2af8079a9c117aa0bcf4c389dc4b53a4be3ffb4b
parent28d8ee9833184ea61cd2829c340845975c422ece (diff)
omap: remoteproc: add support for OMAP5
Added CONFIG_ARCH_OMAP5 and cpu_is_omap54xx() checks along side those for OMAP4, to enable OMAP5. Signed-off-by: Cris Jansson <cjansson@ti.com> Signed-off-by: Subramaniam C.A <subramaniam.ca@ti.com> Signed-off-by: Suman Anna <s-anna@ti.com>
-rw-r--r--arch/arm/mach-omap2/remoteproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/remoteproc.c b/arch/arm/mach-omap2/remoteproc.c
index 6e8b754279c..815a9010c6a 100644
--- a/arch/arm/mach-omap2/remoteproc.c
+++ b/arch/arm/mach-omap2/remoteproc.c
@@ -120,7 +120,7 @@ static int __init omap_rproc_init(void)
int i, ret = 0, oh_count;
/* names like ipu_cx/dsp_cx might show up on other OMAPs, too */
- if (!cpu_is_omap44xx())
+ if (!(cpu_is_omap44xx() || cpu_is_omap54xx()))
return 0;
for (i = 0; i < ARRAY_SIZE(omap4_rproc_data); i++) {