summaryrefslogtreecommitdiff
path: root/board/redrix
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2022-06-27 14:02:04 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-30 19:37:05 +0000
commit8a16a5e84a48651acce0d976656a932020b099cc (patch)
treeee483b08929e05667ee0a7b847c7f244c70e23a3 /board/redrix
parentc65fceee11eb577555f2ee81811e1a8631acaf8f (diff)
downloadchrome-ec-8a16a5e84a48651acce0d976656a932020b099cc.tar.gz
board/redrix/fw_config.h: Format with clang-format
BUG=b:236386294 BRANCH=none TEST=none Change-Id: I09c8503f167cb195ea97a26f64bcc1a707b10682 Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3728860 Reviewed-by: Jeremy Bettis <jbettis@chromium.org>
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;
};