summaryrefslogtreecommitdiff
path: root/common/als.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/als.c')
-rw-r--r--common/als.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/common/als.c b/common/als.c
index 2e9c7ba96c..832ed382f3 100644
--- a/common/als.c
+++ b/common/als.c
@@ -1,4 +1,4 @@
-/* Copyright 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -19,9 +19,8 @@
#include "util.h"
#define CPUTS(outstr) cputs(CC_ALS, outstr)
-#define CPRINTS(format, args...) cprints(CC_ALS, format, ## args)
-#define CPRINTF(format, args...) cprintf(CC_ALS, format, ## args)
-
+#define CPRINTS(format, args...) cprints(CC_ALS, format, ##args)
+#define CPRINTF(format, args...) cprintf(CC_ALS, format, ##args)
#define ALS_POLL_PERIOD SECOND
@@ -90,8 +89,7 @@ static void als_task_init(void)
* Enable ALS task in S0 only and may need to re-enable
* when sysjumped.
*/
- if (system_jumped_late() &&
- chipset_in_state(CHIPSET_STATE_ON))
+ if (system_jumped_late() && chipset_in_state(CHIPSET_STATE_ON))
als_task_enable();
}
@@ -103,7 +101,7 @@ DECLARE_HOOK(HOOK_INIT, als_task_init, HOOK_PRIO_ALS_INIT);
/* Console commands */
#ifdef CONFIG_CMD_ALS
-static int command_als(int argc, char **argv)
+static int command_als(int argc, const char **argv)
{
int i, rv, val;
@@ -121,7 +119,5 @@ static int command_als(int argc, char **argv)
return EC_SUCCESS;
}
-DECLARE_CONSOLE_COMMAND(als, command_als,
- NULL,
- "Print ALS values");
+DECLARE_CONSOLE_COMMAND(als, command_als, NULL, "Print ALS values");
#endif