diff options
author | Sean Rhodes <sean@starlabs.systems> | 2024-03-06 11:45:42 +0000 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2024-03-09 23:29:31 +0000 |
commit | a8bde89bbd1317b6335f00fafb712f77f2ad2e3a (patch) | |
tree | 20ab36c13ab29048001fd91ead1732b4732f5346 | |
parent | 7e5db6da8940eb22a133eba40d55ad31ea8ee706 (diff) |
soc/intel/alderlake: Remove the guard for CnviWifiCore
The CnviWifiCore UPD exists for ADL (version 4263) and RPL
(version 4415). Remove the guard so it is set correctly.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I9943ee43a442a43d75e78d1551e46dcea39db357
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81079
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/intel/alderlake/fsp_params.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/soc/intel/alderlake/fsp_params.c b/src/soc/intel/alderlake/fsp_params.c index 46555b0719..5720c86472 100644 --- a/src/soc/intel/alderlake/fsp_params.c +++ b/src/soc/intel/alderlake/fsp_params.c @@ -828,10 +828,7 @@ static void fill_fsps_cnvi_params(FSP_S_CONFIG *s_cfg, const struct soc_intel_alderlake_config *config) { /* CNVi */ -#if CONFIG(FSP_USE_REPO) - /* This option is only available in public FSP headers on FSP repo */ s_cfg->CnviWifiCore = is_devfn_enabled(PCH_DEVFN_CNVI_WIFI); -#endif s_cfg->CnviMode = is_devfn_enabled(PCH_DEVFN_CNVI_WIFI); s_cfg->CnviBtCore = config->cnvi_bt_core; s_cfg->CnviBtAudioOffload = config->cnvi_bt_audio_offload; |