summaryrefslogtreecommitdiff
path: root/power/cannonlake.c
diff options
context:
space:
mode:
Diffstat (limited to 'power/cannonlake.c')
-rw-r--r--power/cannonlake.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/power/cannonlake.c b/power/cannonlake.c
index 392db669df..b6f8d91e69 100644
--- a/power/cannonlake.c
+++ b/power/cannonlake.c
@@ -1,4 +1,4 @@
-/* Copyright 2017 The Chromium OS Authors. All rights reserved.
+/* Copyright 2017 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -16,9 +16,9 @@
#include "timer.h"
/* Console output macros */
-#define CPRINTS(format, args...) cprints(CC_CHIPSET, format, ## args)
+#define CPRINTS(format, args...) cprints(CC_CHIPSET, format, ##args)
-static int forcing_shutdown; /* Forced shutdown in progress? */
+static int forcing_shutdown; /* Forced shutdown in progress? */
void chipset_force_shutdown(enum chipset_shutdown_reason reason)
{
@@ -47,7 +47,7 @@ void chipset_handle_espi_reset_assert(void)
* power button. If yes, release power button.
*/
if ((power_get_signals() & IN_PCH_SLP_SUS_DEASSERTED) &&
- forcing_shutdown) {
+ forcing_shutdown) {
power_button_pch_release();
forcing_shutdown = 0;
}