aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/sdhci.h
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2007-08-12 16:46:32 +0200
committerPierre Ossman <drzeus@drzeus.cx>2007-08-23 06:30:53 +0200
commite538fbe83e374a3521128c1f4642aca037661c9d (patch)
tree9a2abd920ed6767ae17747daa2e91fa9f1e5fd24 /drivers/mmc/host/sdhci.h
parentmmc: ignore bad max block size in sdhci (diff)
downloadlinux-dev-e538fbe83e374a3521128c1f4642aca037661c9d.tar.xz
linux-dev-e538fbe83e374a3521128c1f4642aca037661c9d.zip
sdhci: handle data interrupts during command
It is fully legal for a controller to start issuing data related interrupts before it has signalled that the command has completed. Make sure the driver actually can handle this. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to '')
-rw-r--r--drivers/mmc/host/sdhci.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h
index d157776c1149..e28987d6d2eb 100644
--- a/drivers/mmc/host/sdhci.h
+++ b/drivers/mmc/host/sdhci.h
@@ -182,6 +182,7 @@ struct sdhci_host {
struct mmc_request *mrq; /* Current request */
struct mmc_command *cmd; /* Current command */
struct mmc_data *data; /* Current data request */
+ int data_early:1; /* Data finished before cmd */
struct scatterlist *cur_sg; /* We're working on this */
int num_sg; /* Entries left */