summaryrefslogtreecommitdiff
path: root/core/cortex-m/llsr.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/cortex-m/llsr.c')
-rw-r--r--core/cortex-m/llsr.c23
1 files changed, 10 insertions, 13 deletions
diff --git a/core/cortex-m/llsr.c b/core/cortex-m/llsr.c
index 616b8653db..0ab920f628 100644
--- a/core/cortex-m/llsr.c
+++ b/core/cortex-m/llsr.c
@@ -1,4 +1,4 @@
-/* Copyright 2018 The Chromium OS Authors. All rights reserved.
+/* Copyright 2018 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -29,7 +29,7 @@ uint64_t __keep __aeabi_llsr(uint64_t v, uint32_t shift)
#ifdef CONFIG_LLSR_TEST
-static int command_llsr(int argc, char **argv)
+static int command_llsr(int argc, const char **argv)
{
/* Volatile to prevent compilier optimization from interfering. */
volatile uint64_t start = 0x123456789ABCDEF0ull;
@@ -38,13 +38,11 @@ static int command_llsr(int argc, char **argv)
const struct {
uint32_t shift_by;
uint64_t result;
- } cases[] = {
- {0, start},
- {16, 0x123456789ABCull},
- {32, 0x12345678u},
- {48, 0x1234u},
- {64, 0u}
- };
+ } cases[] = { { 0, start },
+ { 16, 0x123456789ABCull },
+ { 32, 0x12345678u },
+ { 48, 0x1234u },
+ { 64, 0u } };
for (x = 0; x < ARRAY_SIZE(cases); ++x) {
if ((start >> cases[x].shift_by) != cases[x].result) {
@@ -58,8 +56,7 @@ static int command_llsr(int argc, char **argv)
}
DECLARE_CONSOLE_COMMAND(
- llsrtest, command_llsr,
- "",
- "Run tests against the LLSR ABI. Prints SUCCESS or FAILURE.");
+ llsrtest, command_llsr, "",
+ "Run tests against the LLSR ABI. Prints SUCCESS or FAILURE.");
-#endif /* CONFIG_LLSR_TEST */
+#endif /* CONFIG_LLSR_TEST */