summaryrefslogtreecommitdiff
path: root/board/nucleo-dartmonkey/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/nucleo-dartmonkey/board.c')
-rw-r--r--board/nucleo-dartmonkey/board.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/nucleo-dartmonkey/board.c b/board/nucleo-dartmonkey/board.c
index ea0d11eaf5..1cd6ef5dee 100644
--- a/board/nucleo-dartmonkey/board.c
+++ b/board/nucleo-dartmonkey/board.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -38,8 +38,8 @@ static void ap_deferred(void)
* in S0: SLP_ALT_L is 1 and SLP_L is 1.
* in S5/G3, the FP MCU should not be running.
*/
- int running = gpio_get_level(GPIO_SLP_ALT_L)
- && gpio_get_level(GPIO_SLP_L);
+ int running = gpio_get_level(GPIO_SLP_ALT_L) &&
+ gpio_get_level(GPIO_SLP_L);
if (running) { /* S0 */
disable_sleep(SLEEP_MASK_AP_RUN);
@@ -92,7 +92,7 @@ static void board_init(void)
spi_configure();
ccprints("TRANSPORT_SEL: %s",
- fp_transport_type_to_str(get_fp_transport_type()));
+ fp_transport_type_to_str(get_fp_transport_type()));
/* Enable interrupt on PCH power signals */
gpio_enable_interrupt(GPIO_SLP_ALT_L);