diff options
-rw-r--r-- | drivers/mmc/host/s3cmci.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c index 8c68b2e0dd6e..774af3d7218f 100644 --- a/drivers/mmc/host/s3cmci.c +++ b/drivers/mmc/host/s3cmci.c | |||
@@ -335,6 +335,8 @@ static void pio_tasklet(unsigned long data) | |||
335 | struct s3cmci_host *host = (struct s3cmci_host *) data; | 335 | struct s3cmci_host *host = (struct s3cmci_host *) data; |
336 | 336 | ||
337 | 337 | ||
338 | disable_irq(host->irq); | ||
339 | |||
338 | if (host->pio_active == XFER_WRITE) | 340 | if (host->pio_active == XFER_WRITE) |
339 | do_pio_write(host); | 341 | do_pio_write(host); |
340 | 342 | ||
@@ -352,9 +354,9 @@ static void pio_tasklet(unsigned long data) | |||
352 | host->mrq->data->error = -EINVAL; | 354 | host->mrq->data->error = -EINVAL; |
353 | } | 355 | } |
354 | 356 | ||
355 | disable_irq(host->irq); | ||
356 | finalize_request(host); | 357 | finalize_request(host); |
357 | } | 358 | } else |
359 | enable_irq(host->irq); | ||
358 | } | 360 | } |
359 | 361 | ||
360 | /* | 362 | /* |
@@ -630,7 +632,6 @@ out: | |||
630 | spin_unlock_irqrestore(&host->complete_lock, iflags); | 632 | spin_unlock_irqrestore(&host->complete_lock, iflags); |
631 | return; | 633 | return; |
632 | 634 | ||
633 | |||
634 | fail_request: | 635 | fail_request: |
635 | host->mrq->data->error = -EINVAL; | 636 | host->mrq->data->error = -EINVAL; |
636 | host->complete_what = COMPLETION_FINALIZE; | 637 | host->complete_what = COMPLETION_FINALIZE; |