diff options
author | Nico Huber <nico.h@gmx.de> | 2019-05-30 14:00:29 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-06-03 10:05:55 +0000 |
commit | bfd23ce87bddafe5a1ff17d016cd88f6e746385b (patch) | |
tree | fcdfbfd7a2be364b7326cdad8d00fae8d550ed1b /src/soc/intel/common | |
parent | 0da3a8a91bdfa97f658286717c9e6af0fcd69fe6 (diff) | |
download | coreboot-bfd23ce87bddafe5a1ff17d016cd88f6e746385b.tar.xz |
soc/intel/common/mmc: Replace IS_ENABLED() with CONFIG()
Change-Id: I99d51176f6d7d6a98a3a3c82aa8e8eee73344496
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33111
Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/early_mmc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/include/intelblocks/early_mmc.h b/src/soc/intel/common/block/include/intelblocks/early_mmc.h index 69be40cf27..39aaf58fcf 100644 --- a/src/soc/intel/common/block/include/intelblocks/early_mmc.h +++ b/src/soc/intel/common/block/include/intelblocks/early_mmc.h @@ -61,7 +61,7 @@ int soc_configure_mmc_gpios(void); */ int soc_get_mmc_dll(struct mmc_dll_params *params); -#if IS_ENABLED(CONFIG_SOC_INTEL_COMMON_EARLY_MMC_WAKE) +#if CONFIG(SOC_INTEL_COMMON_EARLY_MMC_WAKE) /* * Initializes sdhci / mmc controller and sends CMD0, CMD1 to emmc card. * In case of success: It returns 0 and adds cbmem entry CBMEM_ID_MMC_STATUS |