From 4635787895a5f30b573e1e34ddbf723588ff847a Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Sun, 23 Jul 2017 16:01:26 -0600 Subject: src/arch: Fix checkpatch warning: no spaces at the start of a line Change-Id: Id9846ceb714dceaea12ea33ce2aa2b8e5bb6f4df Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/20728 Tested-by: build bot (Jenkins) Reviewed-by: Werner Zeh Reviewed-by: Paul Menzel --- src/arch/riscv/include/mcall.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/arch/riscv/include/mcall.h') diff --git a/src/arch/riscv/include/mcall.h b/src/arch/riscv/include/mcall.h index cdd9bd38eb..fe9611ca4c 100644 --- a/src/arch/riscv/include/mcall.h +++ b/src/arch/riscv/include/mcall.h @@ -70,9 +70,9 @@ typedef struct { } hls_t; #define MACHINE_STACK_TOP() ({ \ - /* coverity[uninit_use] : FALSE */ \ - register uintptr_t sp asm ("sp"); \ - (void*)((sp + RISCV_PGSIZE) & -RISCV_PGSIZE); }) + /* coverity[uninit_use] : FALSE */ \ + register uintptr_t sp asm ("sp"); \ + (void*)((sp + RISCV_PGSIZE) & -RISCV_PGSIZE); }) // hart-local storage, at top of stack #define HLS() ((hls_t*)(MACHINE_STACK_TOP() - HLS_SIZE)) -- cgit v1.2.3