diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-08-23 21:07:28 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-28 18:47:23 +0200 |
commit | cbe7464c623d148c96974f0ce8724ead0ad5478d (patch) | |
tree | e47ead759132c68dbbd5a498184c3ef2c46f8b75 /src/cpu/amd/microcode/microcode.c | |
parent | 3f4aece4e07b15a5a2d191873da04b88c8e87049 (diff) | |
download | coreboot-cbe7464c623d148c96974f0ce8724ead0ad5478d.tar.xz |
src/cpu: Add required space before opening parenthesis '('
Change-Id: I7fb9bfcaeec0b9dfd0695d2b2d398fd01091f6bc
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16286
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Omar Pakker
Diffstat (limited to 'src/cpu/amd/microcode/microcode.c')
-rw-r--r-- | src/cpu/amd/microcode/microcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/microcode/microcode.c b/src/cpu/amd/microcode/microcode.c index 314d07013b..ec7e7333bb 100644 --- a/src/cpu/amd/microcode/microcode.c +++ b/src/cpu/amd/microcode/microcode.c @@ -23,7 +23,7 @@ #include <smp/spinlock.h> #define UCODE_DEBUG(fmt, args...) \ - do { printk(BIOS_DEBUG, "[microcode] "fmt, ##args); } while(0) + do { printk(BIOS_DEBUG, "[microcode] "fmt, ##args); } while (0) #define UCODE_MAGIC 0x00414d44 #define UCODE_EQUIV_CPU_TABLE_TYPE 0x00000000 |