aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/tpm/tis_atmel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/i2c/tpm/tis_atmel.c')
-rw-r--r--src/drivers/i2c/tpm/tis_atmel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drivers/i2c/tpm/tis_atmel.c b/src/drivers/i2c/tpm/tis_atmel.c
index 7d8b7a17b8..b6e13513f3 100644
--- a/src/drivers/i2c/tpm/tis_atmel.c
+++ b/src/drivers/i2c/tpm/tis_atmel.c
@@ -14,6 +14,7 @@
#include <arch/early_variables.h>
#include <stdint.h>
+#include <compiler.h>
#include <string.h>
#include <assert.h>
#include <commonlib/endian.h>
@@ -33,7 +34,7 @@ struct tpm_output_header {
uint16_t tag;
uint32_t length;
uint32_t return_code;
-} __attribute__ ((packed));
+} __packed;
int tis_open(void)
{