/*
  * DMA clean up for command errors
  */
-static void mmc_dma_cleanup(struct mmc_omap_host *host)
+static void mmc_dma_cleanup(struct mmc_omap_host *host, int errno)
 {
-       host->data->error = -ETIMEDOUT;
+       host->data->error = errno;
 
        if (host->use_dma && host->dma_ch != -1) {
                dma_unmap_sg(mmc_dev(host->mmc), host->data->sg, host->dma_len,
                                end_cmd = 1;
                        }
                        if (host->data) {
-                               mmc_dma_cleanup(host);
+                               mmc_dma_cleanup(host, -ETIMEDOUT);
                                mmc_omap_reset_controller_fsm(host, SRD);
                        }
                }
                        (status & DATA_CRC)) {
                        if (host->data) {
                                if (status & DATA_TIMEOUT)
-                                       mmc_dma_cleanup(host);
+                                       mmc_dma_cleanup(host, -ETIMEDOUT);
                                else
-                                       host->data->error = -EILSEQ;
+                                       mmc_dma_cleanup(host, -EILSEQ);
                                mmc_omap_reset_controller_fsm(host, SRD);
                                end_trans = 1;
                        }