summaryrefslogtreecommitdiff
path: root/common/blink.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/blink.c')
-rw-r--r--common/blink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/blink.c b/common/blink.c
index ed16146f5a..dcd6f0bdaa 100644
--- a/common/blink.c
+++ b/common/blink.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.
*/
@@ -10,12 +10,12 @@
#include "hooks.h"
#ifndef CONFIG_BLINK_LEDS
- #error The macro CONFIG_BLINK_LEDS must be specified to use BLINK.
+#error The macro CONFIG_BLINK_LEDS must be specified to use BLINK.
#endif
static const enum gpio_signal leds[] = { CONFIG_BLINK_LEDS };
-BUILD_ASSERT(ARRAY_SIZE(leds) <= sizeof(int)*8, "Too many LEDs to drive.");
+BUILD_ASSERT(ARRAY_SIZE(leds) <= sizeof(int) * 8, "Too many LEDs to drive.");
BUILD_ASSERT(ARRAY_SIZE(leds) > 0, "Must have at least one LED to blink.");
static void blink(void)