* we're trying to reinitialise.
  */
 static int mmc_sdio_init_card(struct mmc_host *host, u32 ocr,
-                             struct mmc_card *oldcard, int powered_resume)
+                             struct mmc_card *oldcard)
 {
        struct mmc_card *card;
        int err;
        /*
         * Inform the card of the voltage
         */
-       if (!powered_resume) {
-               err = mmc_send_io_op_cond(host, ocr, &rocr);
-               if (err)
-                       goto err;
-       }
+       err = mmc_send_io_op_cond(host, ocr, &rocr);
+       if (err)
+               goto err;
 
        /*
         * For SPI, enable CRC as appropriate.
         * try to init uhs card. sdio_read_cccr will take over this task
         * to make sure which speed mode should work.
         */
-       if (!powered_resume && (rocr & ocr & R4_18V_PRESENT)) {
+       if (rocr & ocr & R4_18V_PRESENT) {
                err = mmc_set_uhs_voltage(host, ocr_card);
                if (err == -EAGAIN) {
                        mmc_sdio_resend_if_cond(host, card);
        /*
         * For native busses:  set card RCA and quit open drain mode.
         */
-       if (!powered_resume && !mmc_host_is_spi(host)) {
+       if (!mmc_host_is_spi(host)) {
                err = mmc_send_relative_addr(host, &card->rca);
                if (err)
                        goto remove;
        /*
         * Select card, as all following commands rely on that.
         */
-       if (!powered_resume && !mmc_host_is_spi(host)) {
+       if (!mmc_host_is_spi(host)) {
                err = mmc_select_card(card);
                if (err)
                        goto remove;
        if (ret)
                return ret;
 
-       return mmc_sdio_init_card(host, host->card->ocr, host->card, 0);
+       return mmc_sdio_init_card(host, host->card->ocr, host->card);
 }
 
 /*
        /*
         * Detect and init the card.
         */
-       err = mmc_sdio_init_card(host, rocr, NULL, 0);
+       err = mmc_sdio_init_card(host, rocr, NULL);
        if (err)
                goto err;