mb/erying/tgl: fsp_params: Replace half_populated with statement

It looks neater, but does the same exact thing.

Change-Id: Id02ba24ec0295cd4621c69079d719d3df36e6499
Signed-off-by: Alicja Michalska <alicja.michalska@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/87362
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Alicja Michalska 2025-04-20 03:37:43 +02:00 committed by Angel Pons
commit 36c89598a7

View file

@ -16,8 +16,6 @@ static const struct mem_spd spd_info = {
},
};
const bool half_populated = false;
void mainboard_memory_init_params(FSPM_UPD *mupd)
{
// Performance settings
@ -70,5 +68,5 @@ void mainboard_memory_init_params(FSPM_UPD *mupd)
mupd->FspmConfig.MemTestOnWarmBoot = 1;
mupd->FspmConfig.DdrFreqLimit = 3200; // Maximum tested speed.
memcfg_init(mupd, &mem_config, &spd_info, half_populated);
memcfg_init(mupd, &mem_config, &spd_info, false);
}