summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Kirchner <ralf.kirchner@embedded-brains.de>2014-04-16 16:04:56 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-04-17 13:25:11 +0200
commit707b617294110804d36088effcd90b3b0b2d224c (patch)
tree0acabb9fa98495bc1de55e38f249cd53551ece38
parentbsp/arm: Correct detection of arm erratum 764368 (diff)
downloadrtems-707b617294110804d36088effcd90b3b0b2d224c.tar.bz2
bsp/arm: Erratum 764369 after enabling SCU
Execute the SCU part of the workaround of arm erratum 764368 after the SCU was enabled.
-rw-r--r--c/src/lib/libbsp/arm/shared/include/arm-a9mpcore-start.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/arm/shared/include/arm-a9mpcore-start.h b/c/src/lib/libbsp/arm/shared/include/arm-a9mpcore-start.h
index e6c2671e3b..4e8f323a64 100644
--- a/c/src/lib/libbsp/arm/shared/include/arm-a9mpcore-start.h
+++ b/c/src/lib/libbsp/arm/shared/include/arm-a9mpcore-start.h
@@ -93,8 +93,8 @@ arm_a9mpcore_start_errata_764369_handler(volatile a9mpcore_scu *scu)
BSP_START_TEXT_SECTION static inline
arm_a9mpcore_start_scu_enable(volatile a9mpcore_scu *scu)
{
- arm_a9mpcore_start_errata_764369_handler(scu);
scu->ctrl |= A9MPCORE_SCU_CTRL_SCU_EN;
+ arm_a9mpcore_start_errata_764369_handler(scu);
}
BSP_START_TEXT_SECTION static inline arm_a9mpcore_start_hook_0(void)