aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@mailbox.org>2023-02-28 02:55:19 +0100
committerMarek Vasut <marek.vasut+renesas@mailbox.org>2023-04-08 03:53:23 +0200
commit6419dbabe2ccaff9cbe4351080885044f5b468b2 (patch)
treea91d9e202e6126b3455f597b627a598017af8be9
parent7d39feb137d9a2a9ae66e19dfeec99f7b662e020 (diff)
downloadu-boot-6419dbabe2ccaff9cbe4351080885044f5b468b2.zip
u-boot-6419dbabe2ccaff9cbe4351080885044f5b468b2.tar.gz
u-boot-6419dbabe2ccaff9cbe4351080885044f5b468b2.tar.bz2
mmc: npcm_sdhci: Fix use of CONFIG_IS_ENABLED on DM_REGULATOR
The DM_REGULATOR symbol has SPL counterpart in: drivers/power/regulator/Kconfig:config SPL_DM_REGULATOR Use CONFIG_IS_ENABLED() macro to match on the correct variant depending on the build stage. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--drivers/mmc/npcm_sdhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/npcm_sdhci.c b/drivers/mmc/npcm_sdhci.c
index 7eb17cc..d63521d 100644
--- a/drivers/mmc/npcm_sdhci.c
+++ b/drivers/mmc/npcm_sdhci.c
@@ -36,7 +36,7 @@ static int npcm_sdhci_probe(struct udevice *dev)
return ret;
}
- if (IS_ENABLED(CONFIG_DM_REGULATOR)) {
+ if (CONFIG_IS_ENABLED(DM_REGULATOR)) {
device_get_supply_regulator(dev, "vqmmc-supply", &vqmmc_supply);
vqmmc_uv = dev_read_u32_default(dev, "vqmmc-microvolt", 0);
/* Set IO voltage */