aboutsummaryrefslogtreecommitdiff
path: root/src/arch/arm
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-07-23 16:01:26 -0600
committerMartin Roth <martinroth@google.com>2017-07-25 14:26:30 +0000
commit4635787895a5f30b573e1e34ddbf723588ff847a (patch)
tree8bf1da641e5d0f2be21d97e7e3b258e59a79d987 /src/arch/arm
parent7f35d3aa160aa1a43ec4215a7816554b8bab14ed (diff)
src/arch: Fix checkpatch warning: no spaces at the start of a line
Change-Id: Id9846ceb714dceaea12ea33ce2aa2b8e5bb6f4df Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/20728 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/arch/arm')
-rw-r--r--src/arch/arm/cpu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/arm/cpu.c b/src/arch/arm/cpu.c
index e138a6f3ef..fae1a37efc 100644
--- a/src/arch/arm/cpu.c
+++ b/src/arch/arm/cpu.c
@@ -35,10 +35,10 @@
struct cpu_info *cpu_info(void)
{
#error "This is BROKEN! ARM stacks are currently not guaranteed to be " \
- "STACK_SIZE-aligned in any way. If you ever plan to revive this " \
- "feature, make sure you add the proper assertions " \
- "(and maybe consider revising the whole thing to work closer to what " \
- "arm64 is doing now)."
+ "STACK_SIZE-aligned in any way. If you ever plan to revive this " \
+ "feature, make sure you add the proper assertions " \
+ "(and maybe consider revising the whole thing to work closer to what " \
+ "arm64 is doing now)."
uintptr_t addr = ALIGN((uintptr_t)__builtin_frame_address(0),
CONFIG_STACK_SIZE);
addr -= sizeof(struct cpu_info);