From: York Sun Date: Tue, 8 Aug 2017 22:45:13 +0000 (-0700) Subject: driver: mmc: fsl_esdhc: Fix compiling warning X-Git-Tag: v2017.09-rc2~88^2~13 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9bb272e90acf7182311dc524df69b125eac92a53;p=u-boot driver: mmc: fsl_esdhc: Fix compiling warning Commit 4483b7eb added variable vqmmc_dev but only uses it under CONFIG_DM_REGULATOR. Add the same macro to variable declaration to get rid of compiling warning. Signed-off-by: York Sun --- diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index 3abd2d30af..2bf25ece14 100644 --- a/drivers/mmc/fsl_esdhc.c +++ b/drivers/mmc/fsl_esdhc.c @@ -968,7 +968,9 @@ static int fsl_esdhc_probe(struct udevice *dev) struct fsl_esdhc_priv *priv = dev_get_priv(dev); const void *fdt = gd->fdt_blob; int node = dev_of_offset(dev); +#ifdef CONFIG_DM_REGULATOR struct udevice *vqmmc_dev; +#endif fdt_addr_t addr; unsigned int val; int ret;