From 6b90511da4ad431251eecf62f1e3a105f3924c25 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Wed, 12 Jan 2022 23:42:19 +0100 Subject: [PATCH] soc/amd/sabrina/fsp_m_params: drop sata_enable UPD write There are no SATA controllers on the Sabrina SoC. The UPD field will be removed later as a part of the initial UPD header update. Signed-off-by: Felix Held Change-Id: Iedefd9f150e5bcb78173288e5fc9f1bbd6b498cd Reviewed-on: https://review.coreboot.org/c/coreboot/+/61091 Tested-by: build bot (Jenkins) Reviewed-by: Marshall Dawson Reviewed-by: Fred Reitberger --- src/soc/amd/sabrina/fsp_m_params.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/soc/amd/sabrina/fsp_m_params.c b/src/soc/amd/sabrina/fsp_m_params.c index abbb0d1979..95d2d1eb30 100644 --- a/src/soc/amd/sabrina/fsp_m_params.c +++ b/src/soc/amd/sabrina/fsp_m_params.c @@ -148,7 +148,6 @@ void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version) mcfg->enable_nb_azalia = is_dev_enabled(DEV_PTR(gfx_hda)); mcfg->hda_enable = is_dev_enabled(DEV_PTR(hda)); - mcfg->sata_enable = is_dev_enabled(DEV_PTR(sata_0)) || is_dev_enabled(DEV_PTR(sata_1)); if (config->usb_phy_custom) { mcfg->usb_phy = (struct usb_phy_config *)&config->usb_phy;