Loading drivers/mmc/core/sdio.c +4 −3 Original line number Diff line number Diff line Loading @@ -1222,6 +1222,7 @@ int sdio_reset_comm(struct mmc_card *card) { struct mmc_host *host = card->host; u32 ocr; u32 rocr; int err; printk("%s():\n", __func__); Loading @@ -1235,13 +1236,13 @@ int sdio_reset_comm(struct mmc_card *card) if (err) goto err; host->ocr = mmc_select_voltage(host, ocr); if (!host->ocr) { rocr = mmc_select_voltage(host, ocr); if (!rocr) { err = -EINVAL; goto err; } err = mmc_send_io_op_cond(host, host->ocr, &ocr); err = mmc_sdio_init_card(host, rocr, card, 0); if (err) goto err; Loading Loading
drivers/mmc/core/sdio.c +4 −3 Original line number Diff line number Diff line Loading @@ -1222,6 +1222,7 @@ int sdio_reset_comm(struct mmc_card *card) { struct mmc_host *host = card->host; u32 ocr; u32 rocr; int err; printk("%s():\n", __func__); Loading @@ -1235,13 +1236,13 @@ int sdio_reset_comm(struct mmc_card *card) if (err) goto err; host->ocr = mmc_select_voltage(host, ocr); if (!host->ocr) { rocr = mmc_select_voltage(host, ocr); if (!rocr) { err = -EINVAL; goto err; } err = mmc_send_io_op_cond(host, host->ocr, &ocr); err = mmc_sdio_init_card(host, rocr, card, 0); if (err) goto err; Loading