From 26eeb0f8ad554b1fa08d58080da8ce2d22081c1c Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Wed, 15 Mar 2017 18:08:50 -0700 Subject: cpu/intel: Fix brace issues detected by checkpatch.pl Fix the following error and warning detected by checkpatch.pl: ERROR: that open brace { should be on the previous line WARNING: braces {} are not necessary for single statement blocks TEST=Build and run on Galileo Gen2 Change-Id: Icdd6bd9ae578589b4d42002d200fa8f83920265e Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/18849 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/cpu/intel/smm/gen1/smmrelocate.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/cpu/intel/smm/gen1') diff --git a/src/cpu/intel/smm/gen1/smmrelocate.c b/src/cpu/intel/smm/gen1/smmrelocate.c index 2cbe6013cc..c3596d29a7 100644 --- a/src/cpu/intel/smm/gen1/smmrelocate.c +++ b/src/cpu/intel/smm/gen1/smmrelocate.c @@ -157,9 +157,8 @@ static int install_relocation_handler(int *apic_id_map, int num_cpus, if (smm_setup_relocation_handler(&smm_params)) return -1; int i; - for (i = 0; i < num_cpus; i++) { + for (i = 0; i < num_cpus; i++) smm_params.runtime->apic_id_to_cpu[i] = apic_id_map[i]; - } return 0; } @@ -201,9 +200,8 @@ static int install_permanent_handler(int *apic_id_map, int num_cpus, relo_params->smram_size, &smm_params)) return -1; int i; - for (i = 0; i < num_cpus; i++) { + for (i = 0; i < num_cpus; i++) smm_params.runtime->apic_id_to_cpu[i] = apic_id_map[i]; - } return 0; } -- cgit v1.2.3