src/arch: Improve code formatting

Change-Id: Ic1ca6c2e1cd06800d7eb2d00ac0b328987d022ef
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16434
Tested-by: build bot (Jenkins)
Reviewed-by: Omar Pakker
This commit is contained in:
Elyes HAOUAS
2016-09-03 08:28:48 +02:00
committed by Martin Roth
parent c7702536ed
commit 6b72787d27
7 changed files with 113 additions and 113 deletions

View File

@@ -37,9 +37,9 @@ struct cpu_info {
};
struct cpuinfo_riscv {
uint8_t riscv; /* CPU family */
uint8_t riscv_vendor; /* CPU vendor */
uint8_t riscv_model;
uint8_t riscv; /* CPU family */
uint8_t riscv_vendor; /* CPU vendor */
uint8_t riscv_model;
};
#endif

View File

@@ -13,5 +13,5 @@
static inline __attribute__((always_inline)) void hlt(void)
{
while(1);
while (1);
}