diff options
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/cannonlake/fsp_params.c | 4 | ||||
-rw-r--r-- | src/soc/intel/cannonlake/include/soc/serialio.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/cannonlake/fsp_params.c b/src/soc/intel/cannonlake/fsp_params.c index 2688557d9b..b8dba184cb 100644 --- a/src/soc/intel/cannonlake/fsp_params.c +++ b/src/soc/intel/cannonlake/fsp_params.c @@ -64,7 +64,7 @@ static uint8_t get_param_value(const config_t *config, uint32_t dev_offset) return PCH_SERIAL_IO_INDEX(config->SerialIoDevMode[dev_offset]); } -#if IS_ENABLED(CONFIG_SOC_INTEL_COMETLAKE) +#if CONFIG(SOC_INTEL_COMETLAKE) static void parse_devicetree_param(const config_t *config, FSP_S_CONFIG *params) { uint32_t dev_offset = 0; @@ -254,7 +254,7 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd) /* Enable CNVi Wifi if enabled in device tree */ dev = dev_find_slot(0, PCH_DEVFN_CNViWIFI); -#if IS_ENABLED(CONFIG_SOC_INTEL_COMETLAKE) +#if CONFIG(SOC_INTEL_COMETLAKE) params->CnviMode = dev->enabled; #else params->PchCnviMode = dev->enabled; diff --git a/src/soc/intel/cannonlake/include/soc/serialio.h b/src/soc/intel/cannonlake/include/soc/serialio.h index 6c95356d4e..c92bd2d67a 100644 --- a/src/soc/intel/cannonlake/include/soc/serialio.h +++ b/src/soc/intel/cannonlake/include/soc/serialio.h @@ -17,7 +17,7 @@ #ifndef _SERIALIO_H_ #define _SERIALIO_H_ -#if IS_ENABLED(CONFIG_SOC_INTEL_COMETLAKE) +#if CONFIG(SOC_INTEL_COMETLAKE) typedef enum { PchSerialIoNotInitialized, PchSerialIoDisabled, |