summaryrefslogtreecommitdiff
path: root/power/host_sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'power/host_sleep.c')
-rw-r--r--power/host_sleep.c43
1 files changed, 20 insertions, 23 deletions
diff --git a/power/host_sleep.c b/power/host_sleep.c
index e352e677f2..b6f0de498e 100644
--- a/power/host_sleep.c
+++ b/power/host_sleep.c
@@ -1,4 +1,4 @@
-/* Copyright 2019 The Chromium OS Authors. All rights reserved.
+/* Copyright 2019 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -12,15 +12,15 @@
#include "util.h"
/* Console output macros */
-#define CPRINTS(format, args...) cprints(CC_CHIPSET, format, ## args)
-#define CPRINTF(format, args...) cprintf(CC_CHIPSET, format, ## args)
+#define CPRINTS(format, args...) cprints(CC_CHIPSET, format, ##args)
+#define CPRINTF(format, args...) cprintf(CC_CHIPSET, format, ##args)
/* Track last reported sleep event */
static enum host_sleep_event host_sleep_state;
-__overridable void power_chipset_handle_host_sleep_event(
- enum host_sleep_event state,
- struct host_sleep_event_context *ctx)
+__overridable void
+power_chipset_handle_host_sleep_event(enum host_sleep_event state,
+ struct host_sleep_event_context *ctx)
{
/* Default weak implementation -- no action required. */
}
@@ -71,8 +71,7 @@ host_command_host_sleep_event(struct host_cmd_handler_args *args)
return EC_RES_SUCCESS;
}
-DECLARE_HOST_COMMAND(EC_CMD_HOST_SLEEP_EVENT,
- host_command_host_sleep_event,
+DECLARE_HOST_COMMAND(EC_CMD_HOST_SLEEP_EVENT, host_command_host_sleep_event,
EC_VER_MASK(0) | EC_VER_MASK(1));
enum host_sleep_event power_get_host_sleep_state(void)
@@ -116,14 +115,13 @@ static enum sleep_hang_type timeout_hang_type;
static void sleep_transition_timeout(void);
DECLARE_DEFERRED(sleep_transition_timeout);
-__overridable void power_board_handle_sleep_hang(
- enum sleep_hang_type hang_type)
+__overridable void power_board_handle_sleep_hang(enum sleep_hang_type hang_type)
{
/* Default empty implementation */
}
-__overridable void power_chipset_handle_sleep_hang(
- enum sleep_hang_type hang_type)
+__overridable void
+power_chipset_handle_sleep_hang(enum sleep_hang_type hang_type)
{
/* Default empty implementation */
}
@@ -213,7 +211,7 @@ void sleep_reset_tracking(void)
timeout_hang_type = SLEEP_HANG_NONE;
}
-static int command_sleep_fail_timeout(int argc, char **argv)
+static int command_sleep_fail_timeout(int argc, const char **argv)
{
if (argc < 2) {
/* no arguments - just print the current timeout */
@@ -231,7 +229,7 @@ static int command_sleep_fail_timeout(int argc, char **argv)
if (val <= 0 || val >= EC_HOST_SLEEP_TIMEOUT_INFINITE) {
ccprintf("Error: timeout range is 1..%d [msec]\n",
- EC_HOST_SLEEP_TIMEOUT_INFINITE - 1);
+ EC_HOST_SLEEP_TIMEOUT_INFINITE - 1);
return EC_ERROR_PARAM1;
}
@@ -242,19 +240,18 @@ static int command_sleep_fail_timeout(int argc, char **argv)
ccprintf("Sleep failure detection timeout is disabled\n");
else
ccprintf("Sleep failure detection timeout is %d [msec]\n",
- host_sleep_timeout_default);
+ host_sleep_timeout_default);
return EC_SUCCESS;
}
DECLARE_CONSOLE_COMMAND(sleeptimeout, command_sleep_fail_timeout,
- "[default | infinite | <msec>]",
- "Display or set host sleep failure detection timeout.\n"
- "Valid arguments are:\n"
- " default\n"
- " infinite - disables the timeout\n"
- " <msec> - custom length in milliseconds\n"
- " <none> - prints the current setting");
-
+ "[default | infinite | <msec>]",
+ "Display or set host sleep failure detection timeout.\n"
+ "Valid arguments are:\n"
+ " default\n"
+ " infinite - disables the timeout\n"
+ " <msec> - custom length in milliseconds\n"
+ " <none> - prints the current setting");
#else /* !CONFIG_POWER_SLEEP_FAILURE_DETECTION */