diff options
author | isiora <none@example.com> | 2018-02-27 00:21:57 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2018-02-27 00:21:57 +0000 |
commit | 1e6c8c47272aa519b57dfb040c4d54ed2938d4f7 (patch) | |
tree | a47d56b33ba47d801cd9c1dfadc372d47775e186 /os/common | |
parent | f2e082d7d4722b23d039f9e2e0af09dc55383f6d (diff) | |
download | ChibiOS-1e6c8c47272aa519b57dfb040c4d54ed2938d4f7.tar.gz ChibiOS-1e6c8c47272aa519b57dfb040c4d54ed2938d4f7.tar.bz2 ChibiOS-1e6c8c47272aa519b57dfb040c4d54ed2938d4f7.zip |
Small changes.
git-svn-id: https://svn.code.sf.net/p/chibios/svn2/trunk@11578 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/common')
-rw-r--r-- | os/common/startup/ARMCAx-TZ/devices/SAMA5D2/boot.S | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/os/common/startup/ARMCAx-TZ/devices/SAMA5D2/boot.S b/os/common/startup/ARMCAx-TZ/devices/SAMA5D2/boot.S index 82439c1f0..2c1f05cec 100644 --- a/os/common/startup/ARMCAx-TZ/devices/SAMA5D2/boot.S +++ b/os/common/startup/ARMCAx-TZ/devices/SAMA5D2/boot.S @@ -55,13 +55,13 @@ Boot_Handler: /*
* Do not redirect secure interrupts to AIC
*/
- ldr r0, =AIC_REDIR_KEY
- ldr r1, =SFR_SN1
- ldr r1, [r1]
- eor r0, r0, r1
- bic r0, r0, #0x1
- ldr r1, =SFR_AICREDIR
- str r0, [r1]
+ ldr r0, =AIC_REDIR_KEY
+ ldr r1, =SFR_SN1
+ ldr r1, [r1]
+ eor r0, r0, r1
+ bic r0, r0, #0x1
+ ldr r1, =SFR_AICREDIR
+ str r0, [r1]
/*
* Reset SCTLR Settings
*/
|