mb/starlabs/starbook/adl: Fix alignment

Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I4a3f871f2418438ef8e780a39935dfa2f86d8dbb
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71895
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
This commit is contained in:
Sean Rhodes 2023-01-14 21:08:04 +00:00 committed by Felix Held
parent 8c41000862
commit 38483e5e94
1 changed files with 1 additions and 1 deletions

View File

@ -28,5 +28,5 @@ void mainboard_memory_init_params(FSPM_UPD *mupd)
memcfg_init(mupd, &mem_config, &ddr4_spd_info, half_populated); memcfg_init(mupd, &mem_config, &ddr4_spd_info, half_populated);
const uint8_t vtd = get_uint_option("vtd", 1); const uint8_t vtd = get_uint_option("vtd", 1);
mupd->FspmConfig.VtdDisable = !vtd; mupd->FspmConfig.VtdDisable = !vtd;
}; };