summaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp1_1/romstage.c
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-17 11:23:32 -0700
committerLee Leahy <leroy.p.leahy@intel.com>2017-03-17 22:13:34 +0100
commit216712ae01993e83265470de1e29744a0970e4fa (patch)
tree443adb76e3aa160cc57288a3b8227c65c2dd1926 /src/drivers/intel/fsp1_1/romstage.c
parent6ef5192627b07662e641feb5049f4183edde9105 (diff)
downloadcoreboot-216712ae01993e83265470de1e29744a0970e4fa.tar.xz
drivers/intel/fsp1_1: Fix issues detected by checkpatch
Fix the following error and warnings detected by checkpatch.pl: ERROR: "foo * bar" should be "foo *bar" WARNING: line over 80 characters WARNING: else is not generally useful after a break or return WARNING: braces {} are not necessary for single statement blocks WARNING: suspect code indent for conditional statements (16, 32) WARNING: Comparisons should place the constant on the right side of the test TEST=Build and run on Galileo Gen2 Change-Id: I9f56c0b0e3baf84989411e4a4b98f935725c013f Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18886 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Diffstat (limited to 'src/drivers/intel/fsp1_1/romstage.c')
-rw-r--r--src/drivers/intel/fsp1_1/romstage.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/drivers/intel/fsp1_1/romstage.c b/src/drivers/intel/fsp1_1/romstage.c
index 3933b2e193..c2fc667dfd 100644
--- a/src/drivers/intel/fsp1_1/romstage.c
+++ b/src/drivers/intel/fsp1_1/romstage.c
@@ -161,10 +161,10 @@ void romstage_common(struct romstage_params *params)
if ((params->pei_data->boot_mode != ACPI_S3)
&& (params->pei_data->data_to_save_size != 0)
&& (params->pei_data->data_to_save != NULL))
- mrc_cache_stash_data(MRC_TRAINING_DATA,
- params->fsp_version,
- params->pei_data->data_to_save,
- params->pei_data->data_to_save_size);
+ mrc_cache_stash_data(MRC_TRAINING_DATA,
+ params->fsp_version,
+ params->pei_data->data_to_save,
+ params->pei_data->data_to_save_size);
}
/* Save DIMM information */