summaryrefslogtreecommitdiff
path: root/board/redrix
diff options
context:
space:
mode:
Diffstat (limited to 'board/redrix')
-rw-r--r--board/redrix/fw_config.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/board/redrix/fw_config.h b/board/redrix/fw_config.h
index 9a73890f7d..1153ee0e3e 100644
--- a/board/redrix/fw_config.h
+++ b/board/redrix/fw_config.h
@@ -19,20 +19,17 @@ enum ec_cfg_keyboard_backlight_type {
KEYBOARD_BACKLIGHT_ENABLED = 1
};
-enum ec_cfg_eps_type {
- EPS_DISABLED = 0,
- EPS_ENABLED = 1
-};
+enum ec_cfg_eps_type { EPS_DISABLED = 0, EPS_ENABLED = 1 };
union redrix_cbi_fw_config {
struct {
- uint32_t sd_db : 2;
- enum ec_cfg_keyboard_backlight_type kb_bl : 1;
- uint32_t audio : 3;
- uint32_t lte_db : 2;
- uint32_t ufc : 2;
- enum ec_cfg_eps_type eps : 1;
- uint32_t reserved_1 : 21;
+ uint32_t sd_db : 2;
+ enum ec_cfg_keyboard_backlight_type kb_bl : 1;
+ uint32_t audio : 3;
+ uint32_t lte_db : 2;
+ uint32_t ufc : 2;
+ enum ec_cfg_eps_type eps : 1;
+ uint32_t reserved_1 : 21;
};
uint32_t raw_value;
};