From: Nobuhiro Iwamatsu Date: Mon, 31 Mar 2014 05:54:29 +0000 (+0900) Subject: mmc: sh_mmcif: Fix warning by unused variable X-Git-Tag: v2014.04~8^2~12 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=74c32ef58dbcc204af03f5d7188b5cea3959974c;p=oweals%2Fu-boot.git mmc: sh_mmcif: Fix warning by unused variable Signed-off-by: Nobuhiro Iwamatsu Reported-by: Masahiro Yamada Acked-by: Pantelis Antoniou --- diff --git a/drivers/mmc/sh_mmcif.c b/drivers/mmc/sh_mmcif.c index ad5b23ce7e..ed83a14c2d 100644 --- a/drivers/mmc/sh_mmcif.c +++ b/drivers/mmc/sh_mmcif.c @@ -588,13 +588,12 @@ static struct mmc_config sh_mmcif_cfg = { int mmcif_mmc_init(void) { - int ret = 0; struct mmc *mmc; struct sh_mmcif_host *host = NULL; host = malloc(sizeof(struct sh_mmcif_host)); if (!host) - ret = -ENOMEM; + return -ENOMEM; memset(host, 0, sizeof(*host)); host->regs = (struct sh_mmcif_regs *)CONFIG_SH_MMCIF_ADDR;