From: Ulf Hansson Date: Thu, 12 Sep 2013 14:38:56 +0000 (+0200) Subject: mmc: core: Remove unnecessary retry mechanism at SDIO attach X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ec2ed7006263bd4224083aff7833bd791ac35d65;p=linux.git mmc: core: Remove unnecessary retry mechanism at SDIO attach The retry and fallback mechanism when failing to switch to 1.8V signaling voltage is handled by the SDIO card init function. Thus we can remove the duplicated old code from the attach function. Signed-off-by: Ulf Hansson Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c index 15cbc418c95fe..26b13169156cb 100644 --- a/drivers/mmc/core/sdio.c +++ b/drivers/mmc/core/sdio.c @@ -1175,17 +1175,9 @@ int mmc_attach_sdio(struct mmc_host *host) host->ocr |= R4_18V_PRESENT; err = mmc_sdio_init_card(host, host->ocr, NULL, 0); - if (err) { - if (err == -EAGAIN) { - /* - * Retry initialization with S18R set to 0. - */ - host->ocr &= ~R4_18V_PRESENT; - err = mmc_sdio_init_card(host, host->ocr, NULL, 0); - } - if (err) - goto err; - } + if (err) + goto err; + card = host->card; /*