diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2016-06-29 16:24:24 +0300 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-07-25 10:34:38 +0200 |
commit | ea96802384cd062361f758f711c22010238d47f3 (patch) | |
tree | 8c2141896cf40f7389b7c63b0c201c16a85ac49c /drivers/mmc/host/sdhci.h | |
parent | 7c89a3d9082c316f898ec2c3c6c1689e0cad6117 (diff) | |
download | linux-ea96802384cd062361f758f711c22010238d47f3.tar.gz linux-ea96802384cd062361f758f711c22010238d47f3.tar.bz2 linux-ea96802384cd062361f758f711c22010238d47f3.zip |
mmc: sdhci: Get rid of host->busy_handle
Now that there is host->data_cmd to record the command for which a data
interrupt is expected, it is possible to determine whether a command with
busy signaling has completed without an extra flag. So host->busy_handle
is not needed. Remove it.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/sdhci.h')
-rw-r--r-- | drivers/mmc/host/sdhci.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h index 6e971709c9df..13e0bd6cff5d 100644 --- a/drivers/mmc/host/sdhci.h +++ b/drivers/mmc/host/sdhci.h @@ -469,7 +469,6 @@ struct sdhci_host { struct mmc_command *data_cmd; /* Current data command */ struct mmc_data *data; /* Current data request */ unsigned int data_early:1; /* Data finished before cmd */ - unsigned int busy_handle:1; /* Handling the order of Busy-end */ struct sg_mapping_iter sg_miter; /* SG state for PIO */ unsigned int blocks; /* remaining PIO blocks */ |