cpu/amd: Improve formatting

Remove for() braces from around single lines.  Remove extra blank lines.
This cleans up checkpatch problems in a subsequent patch.

Change-Id: I329ac03365e51799581c56eed27ee54de6826f14
Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-on: https://review.coreboot.org/27935
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Marshall Dawson 2018-08-07 11:50:54 -06:00 committed by Martin Roth
parent bddd157ea1
commit e13dd172b1
7 changed files with 5 additions and 14 deletions

View File

@ -54,9 +54,8 @@ static void model_12_init(struct device *dev)
/* zero the machine check error status registers */
msr.lo = 0;
msr.hi = 0;
for (i = 0; i < 5; i++) {
for (i = 0; i < 5; i++)
wrmsr(MC0_STATUS + (i * 4), msr);
}
enable_cache();

View File

@ -77,9 +77,8 @@ static void model_14_init(struct device *dev)
/* zero the machine check error status registers */
msr.lo = 0;
msr.hi = 0;
for (i = 0; i < 6; i++) {
for (i = 0; i < 6; i++)
wrmsr(MC0_STATUS + (i * 4), msr);
}
/* Enable the local CPU APICs */
setup_lapic();

View File

@ -74,9 +74,8 @@ static void model_15_init(struct device *dev)
/* zero the machine check error status registers */
msr.lo = 0;
msr.hi = 0;
for (i = 0; i < 6; i++) {
for (i = 0; i < 6; i++)
wrmsr(MC0_STATUS + (i * 4), msr);
}
/* Enable the local CPU APICs */
setup_lapic();

View File

@ -72,9 +72,8 @@ static void model_16_init(struct device *dev)
/* zero the machine check error status registers */
msr.lo = 0;
msr.hi = 0;
for (i = 0; i < 6; i++) {
for (i = 0; i < 6; i++)
wrmsr(MC0_STATUS + (i * 4), msr);
}
/* Enable the local CPU APICs */
setup_lapic();
@ -99,7 +98,6 @@ static void model_16_init(struct device *dev)
msr.hi &= ~(1 << (46 - 32));
wrmsr(NB_CFG_MSR, msr);
/* Write protect SMM space with SMMLOCK. */
msr = rdmsr(HWCR_MSR);
msr.lo |= (1 << 0);

View File

@ -111,9 +111,8 @@ static void model_10xxx_init(struct device *dev)
/* zero the machine check error status registers */
msr.lo = 0;
msr.hi = 0;
for (i = 0; i < 5; i++) {
for (i = 0; i < 5; i++)
wrmsr(MC0_STATUS + (i * 4), msr);
}
enable_cache();

View File

@ -86,7 +86,6 @@ static void model_15_init(struct device *dev)
for (i = 0; i < 6; i++)
wrmsr(MC0_STATUS + (i * 4), msr);
/* Enable the local CPU APICs */
setup_lapic();

View File

@ -71,7 +71,6 @@ static void model_16_init(struct device *dev)
for (i = 0; i < 6; i++)
wrmsr(MC0_STATUS + (i * 4), msr);
/* Enable the local CPU APICs */
setup_lapic();
@ -95,7 +94,6 @@ static void model_16_init(struct device *dev)
msr.hi &= ~(1 << (46 - 32));
wrmsr(NB_CFG_MSR, msr);
/* Write protect SMM space with SMMLOCK. */
msr = rdmsr(HWCR_MSR);
msr.lo |= (1 << 0);