summaryrefslogtreecommitdiffstats
path: root/util/amdfwtool/amdfwtool.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/amdfwtool/amdfwtool.h')
-rw-r--r--util/amdfwtool/amdfwtool.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/util/amdfwtool/amdfwtool.h b/util/amdfwtool/amdfwtool.h
index b37503e16f4a..a7ac7c1e3c68 100644
--- a/util/amdfwtool/amdfwtool.h
+++ b/util/amdfwtool/amdfwtool.h
@@ -4,6 +4,7 @@
#define _AMD_FW_TOOL_H_
#include <stdint.h>
+#include <stdbool.h>
typedef enum _amd_fw_type {
AMD_FW_PSP_PUBKEY = 0,
@@ -220,12 +221,12 @@ typedef struct _amd_fw_entry {
} amd_fw_entry;
typedef struct _amd_cb_config {
- uint8_t have_whitelist;
- uint8_t unlock_secure;
- uint8_t use_secureos;
- uint8_t load_mp2_fw;
- uint8_t multi_level;
- uint8_t s0i3;
+ bool have_whitelist;
+ bool unlock_secure;
+ bool use_secureos;
+ bool load_mp2_fw;
+ bool multi_level;
+ bool s0i3;
} amd_cb_config;
void register_fw_fuse(char *str);