diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-22 13:35:07 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-24 12:17:31 +0000 |
commit | 7094f4ea61a26dec4b47c0f30a8100e0887be420 (patch) | |
tree | 602291197d9ac0503a59b88373bc1243d403ac53 | |
parent | 20d7c876bda55d33425ece3a3e0eec6ec3627405 (diff) | |
download | coreboot-7094f4ea61a26dec4b47c0f30a8100e0887be420.tar.xz |
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>
-rw-r--r-- | src/arch/arm64/include/armv8/arch/lib_helpers.h | 6 | ||||
-rw-r--r-- | src/mainboard/via/epia-m700/romstage.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/arm64/include/armv8/arch/lib_helpers.h b/src/arch/arm64/include/armv8/arch/lib_helpers.h index 19bb18dc44..f4b6ba6e6a 100644 --- a/src/arch/arm64/include/armv8/arch/lib_helpers.h +++ b/src/arch/arm64/include/armv8/arch/lib_helpers.h @@ -307,7 +307,7 @@ break; \ } \ return var; \ - } while(0) + } while (0) #define SWITCH_CASE_WRITE(func, var, el) do { \ switch(el) { \ @@ -321,7 +321,7 @@ func##_el3(var); \ break; \ } \ - } while(0) + } while (0) #define SWITCH_CASE_TLBI(func, el) do { \ switch(el) { \ @@ -335,7 +335,7 @@ func##_el3(); \ break; \ } \ - } while(0) + } while (0) /* PSTATE and special purpose register access functions */ uint32_t raw_read_current_el(void); diff --git a/src/mainboard/via/epia-m700/romstage.c b/src/mainboard/via/epia-m700/romstage.c index 0aeec7a564..6bf7a154a2 100644 --- a/src/mainboard/via/epia-m700/romstage.c +++ b/src/mainboard/via/epia-m700/romstage.c @@ -360,7 +360,7 @@ static void EmbedComInit(void) outb(0x00, ComBase + 4); /* SOutput("Embedded COM output\n"); */ - /* while(1); */ + /* while (1); */ } #endif |