summaryrefslogtreecommitdiff
path: root/board/anahera
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2022-06-27 13:20:34 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-07-01 20:26:21 +0000
commitfaa19aaeac2038ad2ae35e61c7c2a8237f9248af (patch)
treed5b2e15f551dc7c58dfbf69e684c0c134117d47e /board/anahera
parentfcbc1bb1b0c68c39657da5a703541efce5eab79c (diff)
downloadchrome-ec-faa19aaeac2038ad2ae35e61c7c2a8237f9248af.tar.gz
board/anahera/fw_config.h: Format with clang-format
BUG=b:236386294 BRANCH=none TEST=none Change-Id: I66e9499531743c43b00a26df76014dc5f6caa43d Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3727988 Reviewed-by: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to 'board/anahera')
-rw-r--r--board/anahera/fw_config.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/board/anahera/fw_config.h b/board/anahera/fw_config.h
index 92bc9e55e7..ddbb741ffc 100644
--- a/board/anahera/fw_config.h
+++ b/board/anahera/fw_config.h
@@ -19,10 +19,7 @@ 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 };
enum ec_cfg_ite_type {
LTE_NOT_PRESENT = 0,
@@ -31,14 +28,14 @@ enum ec_cfg_ite_type {
union anahera_cbi_fw_config {
struct {
- uint32_t sd_db : 2;
- enum ec_cfg_keyboard_backlight_type kb_bl : 1;
- uint32_t audio : 3;
- enum ec_cfg_ite_type lte_db : 2;
- uint32_t ufc : 2;
- enum ec_cfg_eps_type eps : 1;
- uint32_t boot_device : 2;
- uint32_t reserved_1 : 19;
+ uint32_t sd_db : 2;
+ enum ec_cfg_keyboard_backlight_type kb_bl : 1;
+ uint32_t audio : 3;
+ enum ec_cfg_ite_type lte_db : 2;
+ uint32_t ufc : 2;
+ enum ec_cfg_eps_type eps : 1;
+ uint32_t boot_device : 2;
+ uint32_t reserved_1 : 19;
};
uint32_t raw_value;
};