From 11aeebec32e7c8b747422ed03498439232fcce75 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Fri, 19 Feb 2021 18:33:33 +0100 Subject: [PATCH] soc/intel/*/smmrelocate.c: Uniformize cosmetics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the same log message everywhere for consistency. Change-Id: I9d2230bc92313269470839486f6644f16e837d7c Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/50934 Reviewed-by: Michael Niewöhner Reviewed-by: Arthur Heymans Tested-by: build bot (Jenkins) --- src/soc/intel/alderlake/smmrelocate.c | 3 +-- src/soc/intel/elkhartlake/smmrelocate.c | 3 +-- src/soc/intel/icelake/smmrelocate.c | 3 +-- src/soc/intel/jasperlake/smmrelocate.c | 3 +-- src/soc/intel/tigerlake/smmrelocate.c | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/soc/intel/alderlake/smmrelocate.c b/src/soc/intel/alderlake/smmrelocate.c index 17b4f2d713..4df90fd7ce 100644 --- a/src/soc/intel/alderlake/smmrelocate.c +++ b/src/soc/intel/alderlake/smmrelocate.c @@ -170,8 +170,7 @@ static void fill_in_relocation_params(struct smm_relocation_params *params) smm_region(&tseg_base, &tseg_size); if (!IS_ALIGNED(tseg_base, tseg_size)) { - printk(BIOS_WARNING, - "TSEG base not aligned with TSEG SIZE! Not setting SMRR\n"); + printk(BIOS_WARNING, "TSEG base not aligned with TSEG size! Not setting SMRR\n"); return; } diff --git a/src/soc/intel/elkhartlake/smmrelocate.c b/src/soc/intel/elkhartlake/smmrelocate.c index 11b631bb86..0cc42e23d9 100644 --- a/src/soc/intel/elkhartlake/smmrelocate.c +++ b/src/soc/intel/elkhartlake/smmrelocate.c @@ -153,8 +153,7 @@ static void fill_in_relocation_params(struct smm_relocation_params *params) smm_region(&tseg_base, &tseg_size); if (!IS_ALIGNED(tseg_base, tseg_size)) { - printk(BIOS_WARNING, - "TSEG base not aligned with TSEG SIZE! Not setting SMRR\n"); + printk(BIOS_WARNING, "TSEG base not aligned with TSEG size! Not setting SMRR\n"); return; } diff --git a/src/soc/intel/icelake/smmrelocate.c b/src/soc/intel/icelake/smmrelocate.c index bbdcb68b10..161229be9b 100644 --- a/src/soc/intel/icelake/smmrelocate.c +++ b/src/soc/intel/icelake/smmrelocate.c @@ -153,8 +153,7 @@ static void fill_in_relocation_params(struct smm_relocation_params *params) smm_region(&tseg_base, &tseg_size); if (!IS_ALIGNED(tseg_base, tseg_size)) { - printk(BIOS_WARNING, - "TSEG base not aligned with TSEG SIZE! Not setting SMRR\n"); + printk(BIOS_WARNING, "TSEG base not aligned with TSEG size! Not setting SMRR\n"); return; } diff --git a/src/soc/intel/jasperlake/smmrelocate.c b/src/soc/intel/jasperlake/smmrelocate.c index bbdcb68b10..161229be9b 100644 --- a/src/soc/intel/jasperlake/smmrelocate.c +++ b/src/soc/intel/jasperlake/smmrelocate.c @@ -153,8 +153,7 @@ static void fill_in_relocation_params(struct smm_relocation_params *params) smm_region(&tseg_base, &tseg_size); if (!IS_ALIGNED(tseg_base, tseg_size)) { - printk(BIOS_WARNING, - "TSEG base not aligned with TSEG SIZE! Not setting SMRR\n"); + printk(BIOS_WARNING, "TSEG base not aligned with TSEG size! Not setting SMRR\n"); return; } diff --git a/src/soc/intel/tigerlake/smmrelocate.c b/src/soc/intel/tigerlake/smmrelocate.c index e75e884464..f7e4fd8613 100644 --- a/src/soc/intel/tigerlake/smmrelocate.c +++ b/src/soc/intel/tigerlake/smmrelocate.c @@ -170,8 +170,7 @@ static void fill_in_relocation_params(struct smm_relocation_params *params) smm_region(&tseg_base, &tseg_size); if (!IS_ALIGNED(tseg_base, tseg_size)) { - printk(BIOS_WARNING, - "TSEG base not aligned with TSEG SIZE! Not setting SMRR\n"); + printk(BIOS_WARNING, "TSEG base not aligned with TSEG size! Not setting SMRR\n"); return; }