aboutsummaryrefslogtreecommitdiff
path: root/src/arch/arm/armv7/thread.c
diff options
context:
space:
mode:
authorLogan Carlson <logancarlson@google.com>2017-05-31 12:01:01 -0600
committerMartin Roth <martinroth@google.com>2017-07-21 20:40:27 +0000
commit50522254fbd063c7be6037a88e6712016a8586ab (patch)
treeec50055e421b99e45864de06987a5d8544cfb483 /src/arch/arm/armv7/thread.c
parent80358a1f478713861a3e66874a1ffb7cf259bd7c (diff)
arch/arm/armv7: Correct checkpatch errors
- Correct whitespace issues with files under arch/arm/armv7. - Fix comments and remove unnecessary line continuations in mmu.c Change-Id: I69d50030b07b1919555feca44967472922176a81 Signed-off-by: Logan Carlson <logancarlson@google.com> Reviewed-on: https://review.coreboot.org/19996 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/arch/arm/armv7/thread.c')
-rw-r--r--src/arch/arm/armv7/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/armv7/thread.c b/src/arch/arm/armv7/thread.c
index a3b1d0c13c..3b8d1af23e 100644
--- a/src/arch/arm/armv7/thread.c
+++ b/src/arch/arm/armv7/thread.c
@@ -39,7 +39,7 @@ static inline uintptr_t push_stack(uintptr_t cur_stack, uintptr_t value)
}
void arch_prepare_thread(struct thread *t,
- void asmlinkage (*thread_entry)(void *), void *arg)
+ void asmlinkage(*thread_entry)(void *), void *arg)
{
uintptr_t stack = t->stack_current;
int i;