aboutsummaryrefslogtreecommitdiff
path: root/src/security
diff options
context:
space:
mode:
Diffstat (limited to 'src/security')
-rw-r--r--src/security/tpm/tspi/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/security/tpm/tspi/log.c b/src/security/tpm/tspi/log.c
index 07623f75b1..1d6f9acf32 100644
--- a/src/security/tpm/tspi/log.c
+++ b/src/security/tpm/tspi/log.c
@@ -11,7 +11,7 @@
static struct tcpa_table *tcpa_cbmem_init(void)
{
- MAYBE_STATIC_BSS struct tcpa_table *tclt = NULL;
+ static struct tcpa_table *tclt;
if (tclt)
return tclt;
@@ -32,7 +32,7 @@ static struct tcpa_table *tcpa_cbmem_init(void)
struct tcpa_table *tcpa_log_init(void)
{
- MAYBE_STATIC_BSS struct tcpa_table *tclt = NULL;
+ static struct tcpa_table *tclt;
/* We are dealing here with pre CBMEM environment.
* If cbmem isn't available use CAR or SRAM */