soc/intel/tigerlake: Reflow long lines

Use the 96 character limit.

Signed-off-by: Sridhar Siricilla <sridhar.siricilla@intel.com>
Change-Id: I43d77db1f81d72aa13f3a702abff490a68a52bd7
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46072
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subrata.banik@intel.com>
This commit is contained in:
Sridhar Siricilla 2020-10-06 16:30:32 +05:30 committed by Patrick Georgi
parent b9365ef377
commit d6ffbf0e43
1 changed files with 2 additions and 4 deletions

View File

@ -441,12 +441,10 @@ void meminit_ddr(FSP_M_CONFIG *mem_cfg, const struct ddr_memory_cfg *board_cfg,
{
switch (board_cfg->mem_type) {
case MEMTYPE_DDR4:
meminit_ddr4(mem_cfg, board_cfg->ddr4_cfg, info,
half_populated);
meminit_ddr4(mem_cfg, board_cfg->ddr4_cfg, info, half_populated);
break;
case MEMTYPE_LPDDR4X:
meminit_lpddr4x(mem_cfg, board_cfg->lpddr4_cfg, info,
half_populated);
meminit_lpddr4x(mem_cfg, board_cfg->lpddr4_cfg, info, half_populated);
break;
default:
die("Unsupported memory type = %d!\n", board_cfg->mem_type);