lib: bsp: cortex-a9 bsp is modified for fixing iar compilation

This patch modifies assembly level barrier function definitions
in xpseudo_asm_iccarm.h for iar compiler to fix the compilation
error for coresight driver

Signed-off-by: Kinjal Pravinbhai Patel <patelki@xilinx.com>
Acked-By: Venkata Naga Sai Krishna Kolapalli <venkatan@xilinx.com>
This commit is contained in:
Kinjal Pravinbhai Patel 2015-11-02 16:18:40 +05:30 committed by Nava kishore Manne
parent 59ac8e6c21
commit a4ecb119e1

View file

@ -100,13 +100,13 @@ extern "C" {
/* memory synchronization operations */
/* Instruction Synchronization Barrier */
#define isb() void __ISB(void);
#define isb() __ISB();
/* Data Synchronization Barrier */
#define dsb() void __DSB(void);
#define dsb() __DSB();
/* Data Memory Barrier */
#define dmb() void __DMB(void);
#define dmb() __DMB();
/* Memory Operations */