summaryrefslogtreecommitdiff
path: root/board/anahera/fw_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/anahera/fw_config.h')
-rw-r--r--board/anahera/fw_config.h23
1 files changed, 10 insertions, 13 deletions
diff --git a/board/anahera/fw_config.h b/board/anahera/fw_config.h
index 92bc9e55e7..32787c1e4f 100644
--- a/board/anahera/fw_config.h
+++ b/board/anahera/fw_config.h
@@ -1,4 +1,4 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+/* Copyright 2021 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -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;
};