diff options
author | Marouene Boubakri <marouene.boubakri@nxp.com> | 2021-03-12 12:00:01 +0100 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2021-03-22 16:02:48 +0530 |
commit | bfc85c70e7517dc633b74e33768247b4df6a661c (patch) | |
tree | 8495986c0ebfc19121a10e3b1af57c4ea77c7175 /include/sbi/sbi_trap.h | |
parent | ddad02d62550ca8884a2bd21345dad8c6c216777 (diff) |
include: headers: Replace __ASSEMBLY__ with __ASSEMBLER__
GCC has already a predefined macro __ASSEMBLER__ therefore, it can be
used without the need to define a new flag with -D__ASSEMBLY__.
This is useful when adding the library to projects having a build
system such one can build without the need to make changes.
THe build system does not use the Makefile in the sources tree.
Signed-off-by: Marouene Boubakri <marouene.boubakri@nxp.com>
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'include/sbi/sbi_trap.h')
-rw-r--r-- | include/sbi/sbi_trap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sbi/sbi_trap.h b/include/sbi/sbi_trap.h index 5fb94f9..070d000 100644 --- a/include/sbi/sbi_trap.h +++ b/include/sbi/sbi_trap.h @@ -110,7 +110,7 @@ /** Size (in bytes) of sbi_trap_info */ #define SBI_TRAP_INFO_SIZE SBI_TRAP_INFO_OFFSET(last) -#ifndef __ASSEMBLY__ +#ifndef __ASSEMBLER__ #include <sbi/sbi_types.h> |