diff options
author | R Sricharan <r.sricharan@ti.com> | 2011-11-04 15:52:59 +0530 |
---|---|---|
committer | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2012-07-09 19:14:39 +0530 |
commit | e17933c2c0173ec19aa2450e4be79b7adfd52224 (patch) | |
tree | dab8ae0ebcaf539177a4aedf8c6e709921a71119 /arch/arm/mach-omap2/devices.c | |
parent | 1a5da219a4726dbddb189ac18bc246d51b04c972 (diff) | |
download | blackbird-op-linux-e17933c2c0173ec19aa2450e4be79b7adfd52224.tar.gz blackbird-op-linux-e17933c2c0173ec19aa2450e4be79b7adfd52224.zip |
ARM: OMAP5: l3: Add l3 error handler support for omap5
The l3 interconnect ip is same for OMAP4 and OMAP5.
So reuse the l3 error handler error code for OMAP5
as well. Also a few targets has been newly added for
OMAP5. So updating the driver for that here.
Signed-off-by: R Sricharan <r.sricharan@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/devices.c')
-rw-r--r-- | arch/arm/mach-omap2/devices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 7b4b9327e543..be3e059a4017 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -84,7 +84,7 @@ static int __init omap4_l3_init(void) * To avoid code running on other OMAPs in * multi-omap builds */ - if (!(cpu_is_omap44xx())) + if (!cpu_is_omap44xx() && !soc_is_omap54xx()) return -ENODEV; for (i = 0; i < L3_MODULES; i++) { |