testsuite: enable timestamp_serialize() for aarch32 Cortex-A CPUs

Enable the existing aarch32 Cortex-R implementation of
timestamp_serialize() for aarch32 Cortex-A CPUs as well.

Signed-off-by: Immo Birnbaum <Immo.Birnbaum@Weidmueller.com>
This commit is contained in:
Immo Birnbaum 2021-09-24 13:56:30 +02:00 committed by Carles Cufí
commit eef767eabc

View file

@ -30,7 +30,7 @@ static inline void timestamp_serialize(void)
/* isb is available in all Cortex-M */
__ISB();
}
#elif defined(CONFIG_CPU_CORTEX_R)
#elif defined(CONFIG_CPU_CORTEX_R) || defined(CONFIG_CPU_AARCH32_CORTEX_A)
#include <arch/arm/aarch32/cortex_a_r/cpu.h>
static inline void timestamp_serialize(void)
{