summaryrefslogtreecommitdiff
path: root/board/dojo/cbi_fw_config.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/dojo/cbi_fw_config.c')
-rw-r--r--board/dojo/cbi_fw_config.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/board/dojo/cbi_fw_config.c b/board/dojo/cbi_fw_config.c
index 9972e02249..96e6d9b266 100644
--- a/board/dojo/cbi_fw_config.c
+++ b/board/dojo/cbi_fw_config.c
@@ -1,4 +1,4 @@
-/* Copyright 2022 The Chromium OS Authors. All rights reserved.
+/* Copyright 2022 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -30,12 +30,12 @@ DECLARE_HOOK(HOOK_INIT, cbi_fw_config_init, HOOK_PRIO_FIRST);
enum fw_config_kblight_type get_cbi_fw_config_kblight(void)
{
- return ((cached_fw_config & FW_CONFIG_KB_BL_MASK)
- >> FW_CONFIG_KB_BL_OFFSET);
+ return ((cached_fw_config & FW_CONFIG_KB_BL_MASK) >>
+ FW_CONFIG_KB_BL_OFFSET);
}
enum fw_config_kblayout_type get_cbi_fw_config_kblayout(void)
{
- return ((cached_fw_config & FW_CONFIG_KB_LAYOUT_MASK)
- >> FW_CONFIG_KB_LAYOUT_OFFSET);
+ return ((cached_fw_config & FW_CONFIG_KB_LAYOUT_MASK) >>
+ FW_CONFIG_KB_LAYOUT_OFFSET);
}