summaryrefslogtreecommitdiff
path: root/util/signer/common/signed_header.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/signer/common/signed_header.h')
-rw-r--r--util/signer/common/signed_header.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/util/signer/common/signed_header.h b/util/signer/common/signed_header.h
index 82a6a7cbda..2012285f82 100644
--- a/util/signer/common/signed_header.h
+++ b/util/signer/common/signed_header.h
@@ -5,6 +5,10 @@
#ifndef __EC_UTIL_SIGNER_COMMON_SIGNED_HEADER_H
#define __EC_UTIL_SIGNER_COMMON_SIGNED_HEADER_H
+#include <assert.h>
+#include <string.h>
+#include <inttypes.h>
+
#define FUSE_PADDING 0x55555555 // baked in hw!
#define FUSE_IGNORE 0xa3badaac // baked in rom!
#define FUSE_MAX 128 // baked in rom!
@@ -33,6 +37,9 @@ typedef struct SignedHeader {
assert(n < INFO_MAX);
infomap[n / 32] |= 1 << (n & 31);
}
+
+ void print() const {
+ }
#endif // __cplusplus
uint32_t magic; // -1 (thanks, boot_sys!)