nb/intel/nehalem: Remove unneeded whitespace
Change-Id: I942a054144e05a3722c3743e445a879e86021dd4 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/29174 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
d50cf23e43
commit
4fe0cbac97
|
@ -106,7 +106,7 @@ static void early_cpu_init (void)
|
|||
if (!(result.eax & 0x2)) {
|
||||
m = rdmsr(MSR_FSB_CLOCK_VCC);
|
||||
reg8 = ((m.lo & 0xff00) >> 8) + 1;
|
||||
m = rdmsr (IA32_PERF_CTL);
|
||||
m = rdmsr(IA32_PERF_CTL);
|
||||
m.lo = (m.lo & ~0xff) | reg8;
|
||||
wrmsr(IA32_PERF_CTL, m);
|
||||
|
||||
|
@ -120,7 +120,7 @@ static void early_cpu_init (void)
|
|||
m = rdmsr(MSR_FSB_CLOCK_VCC);
|
||||
reg8 = ((m.lo & 0xff00) >> 8) + 1;
|
||||
|
||||
m = rdmsr (IA32_PERF_CTL);
|
||||
m = rdmsr(IA32_PERF_CTL);
|
||||
m.lo = (m.lo & ~0xff) | reg8;
|
||||
wrmsr(IA32_PERF_CTL, m);
|
||||
|
||||
|
|
Loading…
Reference in New Issue