Frans Hendriks has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/30126
Change subject: soc/intel/braswell: Correct code style ......................................................................
soc/intel/braswell: Correct code style
Curly braces not required for this else statement
BUG=N/A TEST=Intel CherryHill CRB
Change-Id: I73764aac62762d270f63957cc917c1e4d3f0eb20 Signed-off-by: Frans Hendriks fhendriks@eltan.com --- M src/soc/intel/braswell/southcluster.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/26/30126/1
diff --git a/src/soc/intel/braswell/southcluster.c b/src/soc/intel/braswell/southcluster.c index 6ea2ea9..0852b33 100644 --- a/src/soc/intel/braswell/southcluster.c +++ b/src/soc/intel/braswell/southcluster.c @@ -179,10 +179,10 @@ printk(BIOS_DEBUG, "Disabling slp_x stretching.\n"); write32(gen_pmcon1, read32(gen_pmcon1) | DIS_SLP_X_STRCH_SUS_UP); - } else { + } else write32(gen_pmcon1, read32(gen_pmcon1) & ~DIS_SLP_X_STRCH_SUS_UP); - } +
/* Initialize i8254 timers */ setup_i8254();