soc/intel/braswell: Clean up

Tested with BUILD_TIMELESS=1, Facebook FBG1701 remains unaffected.

Change-Id: I784a5ddc1a8dcbfb960ce970b28b850244a47773
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39663
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/src/soc/intel/braswell/memmap.c b/src/soc/intel/braswell/memmap.c
index 04e5d7b..28b9e0e 100644
--- a/src/soc/intel/braswell/memmap.c
+++ b/src/soc/intel/braswell/memmap.c
@@ -19,7 +19,7 @@
 static size_t smm_region_size(void)
 {
 	u32 smm_size;
-	smm_size = iosf_bunit_read(BUNIT_SMRRH) & 0xFFFF;
+	smm_size =  iosf_bunit_read(BUNIT_SMRRH) & 0xFFFF;
 	smm_size -= iosf_bunit_read(BUNIT_SMRRL) & 0xFFFF;
 	smm_size = (smm_size + 1) << 20;
 	return smm_size;