Adapt to the renaming of common.h

common.h has been renamed to tf_psa_crypto_common.h in the standalone
TF PSA Crypto library used in Mbed TLS 4.

Signed-off-by: Bence Szépkúti <[email protected]>
This commit is contained in:
Bence Szépkúti
2025-07-29 10:20:11 +02:00
parent 87dbfb290f
commit a556abfaf8
2 changed files with 5 additions and 1 deletions
+5
View File
@@ -21,7 +21,12 @@
#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
#include "mbedtls/memory_buffer_alloc.h"
#endif
#if !defined(MBEDTLS_VERSION_MAJOR) || MBEDTLS_VERSION_MAJOR >= 4
#include "tf_psa_crypto_common.h"
#else
#include "common.h"
#endif
/**
* \brief This macro tests the expression passed to it as a test step or
-1
View File
@@ -34,7 +34,6 @@
#include "test/threading_helpers.h"
#include "test/macros.h"
#include "test/memory.h"
#include "common.h"
#include <stdio.h>
#include <string.h>