tests: Add missing timestamp_serialize() for Armv8-R aarch64

This commit fixes the build error: "error implementation of
timestamp_serialize() not provided for your CPU target" for
fvp_baser_aemv8r tests.

Signed-off-by: Henry Wang <Henry.Wang@arm.com>
This commit is contained in:
Henry Wang 2020-12-25 16:42:02 +08:00 committed by Anas Nashif
commit 7d88c3b79d

View file

@ -36,7 +36,7 @@ static inline void timestamp_serialize(void)
{
__ISB();
}
#elif defined(CONFIG_CPU_CORTEX_A)
#elif defined(CONFIG_CPU_CORTEX_A) || defined(CONFIG_CPU_AARCH64_CORTEX_R)
#include <arch/arm64/cpu.h>
static inline void timestamp_serialize(void)
{