diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-08-23 21:41:43 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-28 18:29:19 +0200 |
commit | 7c8d74c10335ef759f12e6746ae563bd776813f9 (patch) | |
tree | 5fd89e9d915e76068cb86ac173d91ca24e478d91 /src/cpu/intel | |
parent | 2078e75b00582f4e250c374df0ce970da9e1b66e (diff) |
src/cpu: Remove unnecessary whitespace before "\n"
Change-Id: Iebdcc659bf2a3e738702c85ee86dbb71b504721a
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16279
Tested-by: build bot (Jenkins)
Reviewed-by: Omar Pakker
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/cpu/intel')
-rw-r--r-- | src/cpu/intel/microcode/microcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/microcode/microcode.c b/src/cpu/intel/microcode/microcode.c index b0681414a1..136636c41c 100644 --- a/src/cpu/intel/microcode/microcode.c +++ b/src/cpu/intel/microcode/microcode.c @@ -65,7 +65,7 @@ static inline u32 read_microcode_rev(void) "movl $0x01, %%eax\n\t" "cpuid\n\t" "movl $0x08b, %%ecx\n\t" - "rdmsr \n\t" + "rdmsr\n\t" : /* outputs */ "=a" (msr.lo), "=d" (msr.hi) : /* inputs */ |