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>
This commit is contained in:
@@ -41,9 +41,9 @@
|
||||
#define INSERT_FIELD(val, which, fieldval) (((val) & ~(which)) | ((fieldval) * ((which) & ~((which)-1))))
|
||||
|
||||
#define supervisor_paddr_valid(start, length) \
|
||||
((uintptr_t)(start) >= current.first_user_vaddr + current.bias \
|
||||
&& (uintptr_t)(start) + (length) < mem_size \
|
||||
&& (uintptr_t)(start) + (length) >= (uintptr_t)(start))
|
||||
((uintptr_t)(start) >= current.first_user_vaddr + current.bias \
|
||||
&& (uintptr_t)(start) + (length) < mem_size \
|
||||
&& (uintptr_t)(start) + (length) >= (uintptr_t)(start))
|
||||
|
||||
typedef uintptr_t pte_t;
|
||||
extern pte_t* root_page_table;
|
||||
|
Reference in New Issue
Block a user