src: Add space after 'while'

Change-Id: I44cdb6578f9560cf4b8b52a4958b95b65e0cd57a
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26464
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
This commit is contained in:
Elyes HAOUAS 2018-05-22 13:35:07 +02:00 committed by Patrick Georgi
parent 20d7c876bd
commit 7094f4ea61
2 changed files with 4 additions and 4 deletions

View File

@ -307,7 +307,7 @@
break; \ break; \
} \ } \
return var; \ return var; \
} while(0) } while (0)
#define SWITCH_CASE_WRITE(func, var, el) do { \ #define SWITCH_CASE_WRITE(func, var, el) do { \
switch(el) { \ switch(el) { \
@ -321,7 +321,7 @@
func##_el3(var); \ func##_el3(var); \
break; \ break; \
} \ } \
} while(0) } while (0)
#define SWITCH_CASE_TLBI(func, el) do { \ #define SWITCH_CASE_TLBI(func, el) do { \
switch(el) { \ switch(el) { \
@ -335,7 +335,7 @@
func##_el3(); \ func##_el3(); \
break; \ break; \
} \ } \
} while(0) } while (0)
/* PSTATE and special purpose register access functions */ /* PSTATE and special purpose register access functions */
uint32_t raw_read_current_el(void); uint32_t raw_read_current_el(void);

View File

@ -360,7 +360,7 @@ static void EmbedComInit(void)
outb(0x00, ComBase + 4); outb(0x00, ComBase + 4);
/* SOutput("Embedded COM output\n"); */ /* SOutput("Embedded COM output\n"); */
/* while(1); */ /* while (1); */
} }
#endif #endif