Skip to content

Commit abeb825

Browse files
committed
Mark the allocator state variables as static
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
1 parent adde4b2 commit abeb825

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/pqcp/src/pqcp_buffer_alloc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#include "wrap_mldsa_native.h"
1212
#include "src/common.h"
1313

14-
MLD_ALIGN uint8_t tf_psa_crypto_pqcp_alloc_buffer[TF_PSA_CRYPTO_PQCP_ALLOC_BUFFER_SIZE];
15-
size_t tf_psa_crypto_pqcp_alloc_used;
16-
int tf_psa_crypto_pqcp_alloc_status;
14+
static MLD_ALIGN uint8_t tf_psa_crypto_pqcp_alloc_buffer[TF_PSA_CRYPTO_PQCP_ALLOC_BUFFER_SIZE];
15+
static size_t tf_psa_crypto_pqcp_alloc_used;
16+
static int tf_psa_crypto_pqcp_alloc_status;
1717

1818
int tf_psa_crypto_pqcp_alloc_done(void)
1919
{

0 commit comments

Comments
 (0)