sw_apps:zynq_fsbl: Changes for IAR compiler

Modified code for IAR compilation

Signed-off-by: Krishna Chaitanya Patakamuri <kpataka@xilinx.com>
This commit is contained in:
Krishna Chaitanya Patakamuri 2014-08-27 12:31:50 +05:30 committed by Jagannadha Sutradharudu Teki
parent 25f36a6485
commit 3e34f20971
3 changed files with 7 additions and 3 deletions

View file

@ -211,6 +211,8 @@
* Resolution: Same as 773866
* 809336 Minor code cleanup
* Resolution Minor code changes
* kc 08/27/14 820356 - FSBL compilation fails with IAR compiler
* Resolution: Change of __asm__ to __asm
* </pre>
*
* </pre>

View file

@ -106,7 +106,7 @@ FsblHandoffExit:
.Ldone: b .Ldone /* Paranoia: we should never get here */
.end
#elif defined (__ICCARM__)
#elif defined (__IASMARM__)
PUBLIC FsblHandoffJtagExit

View file

@ -93,7 +93,9 @@
* 9.00a kc 04/16/14 Fix for CR#724166 - SetPpk() will fail on secure
* fallback unless FSBL* and FSBL
* are identical in length
* 10.00a kc 07/24/14 Fix for CR#809336 - Minor code cleanup
* 10.00a kc 07/24/14 Fix for CR#809336 - Minor code cleanup
* kc 08/27/14 Fix for CR#820356 - FSBL compilation fails with
* IAR compiler
* </pre>
*
* @note
@ -624,7 +626,7 @@ void FsblFallback(void)
/*
* Barrier for synchronization
*/
__asm__(
__asm(
"dsb\n\t"
"isb"
);