mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-03-07 12:12:07 +00:00
MMC: Fix S3C24XX IRQ enable during PIO transfers
Fix Bug #677 - I/O errors on heavy microSD writes for 2.6.22.x. Signed-off-by: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
This commit is contained in:
parent
bdbc9c3a8f
commit
d643b5f7e0
@ -335,6 +335,8 @@ static void pio_tasklet(unsigned long data)
|
|||||||
struct s3cmci_host *host = (struct s3cmci_host *) data;
|
struct s3cmci_host *host = (struct s3cmci_host *) data;
|
||||||
|
|
||||||
|
|
||||||
|
disable_irq(host->irq);
|
||||||
|
|
||||||
if (host->pio_active == XFER_WRITE)
|
if (host->pio_active == XFER_WRITE)
|
||||||
do_pio_write(host);
|
do_pio_write(host);
|
||||||
|
|
||||||
@ -352,9 +354,9 @@ static void pio_tasklet(unsigned long data)
|
|||||||
host->mrq->data->error = -EINVAL;
|
host->mrq->data->error = -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
disable_irq(host->irq);
|
|
||||||
finalize_request(host);
|
finalize_request(host);
|
||||||
}
|
} else
|
||||||
|
enable_irq(host->irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -630,7 +632,6 @@ out:
|
|||||||
spin_unlock_irqrestore(&host->complete_lock, iflags);
|
spin_unlock_irqrestore(&host->complete_lock, iflags);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
fail_request:
|
fail_request:
|
||||||
host->mrq->data->error = -EINVAL;
|
host->mrq->data->error = -EINVAL;
|
||||||
host->complete_what = COMPLETION_FINALIZE;
|
host->complete_what = COMPLETION_FINALIZE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user