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:
parent
59ac8e6c21
commit
a4ecb119e1
1 changed files with 3 additions and 3 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue