summaryrefslogtreecommitdiffstats
path: root/src/drivers/elog/boot_count.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/elog/boot_count.c')
-rw-r--r--src/drivers/elog/boot_count.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drivers/elog/boot_count.c b/src/drivers/elog/boot_count.c
index 9d717d888849..6e9fcaba3a3b 100644
--- a/src/drivers/elog/boot_count.c
+++ b/src/drivers/elog/boot_count.c
@@ -18,6 +18,7 @@
#include <pc80/mc146818rtc.h>
#include <stddef.h>
#include <stdint.h>
+#include <compiler.h>
#include <elog.h>
/*
@@ -43,7 +44,7 @@ struct boot_count {
u16 signature;
u32 count;
u16 checksum;
-} __attribute__ ((packed));
+} __packed;
/* Read and validate boot count structure from CMOS */
static int boot_count_cmos_read(struct boot_count *bc)