tests: testsuite: Add Cortex-A case
The test requires a new define to be able to support Cortex-A. Add the missing define. Signed-off-by: Carlo Caione <ccaione@baylibre.com>
This commit is contained in:
parent
87d8a035dd
commit
18ea3e7fe9
1 changed files with 6 additions and 0 deletions
|
@ -36,6 +36,12 @@ static inline void timestamp_serialize(void)
|
|||
{
|
||||
__ISB();
|
||||
}
|
||||
#elif defined(CONFIG_CPU_CORTEX_A)
|
||||
#include <arch/arm/aarch64/cpu.h>
|
||||
static inline void timestamp_serialize(void)
|
||||
{
|
||||
__ISB();
|
||||
}
|
||||
#elif defined(CONFIG_CPU_ARCV2)
|
||||
#define timestamp_serialize()
|
||||
#elif defined(CONFIG_ARCH_POSIX)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue