diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2016-06-21 15:12:46 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-07-25 10:34:22 +0200 |
commit | 1b8d79c5494484d140f2a19101412b51e2d5f6b5 (patch) | |
tree | 83b19b871e56b507ce55102e4b99098ff3aeedae /include/linux/mmc | |
parent | 2801b95e8ff0fc24d7708a67bb98902dad197635 (diff) | |
download | linux-1b8d79c5494484d140f2a19101412b51e2d5f6b5.tar.gz linux-1b8d79c5494484d140f2a19101412b51e2d5f6b5.tar.bz2 linux-1b8d79c5494484d140f2a19101412b51e2d5f6b5.zip |
mmc: core: Allow hosts to specify non-support for SD commands
There are host drivers which needs to valdiate for non-supported SD
commands and returnn error code for such requests.
To improve and simplify the behaviour, let's invent MMC_CAP2_NO_SD
which these host drivers can set to tell the mmc core to skip sending SD
commands during card initialization.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'include/linux/mmc')
-rw-r--r-- | include/linux/mmc/host.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index d72c0c34c21d..c22476d23b84 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -309,6 +309,7 @@ struct mmc_host { #define MMC_CAP2_NO_WRITE_PROTECT (1 << 18) /* No physical write protect pin, assume that card is always read-write */ #define MMC_CAP2_NO_SDIO (1 << 19) /* Do not send SDIO commands during initialization */ #define MMC_CAP2_HS400_ES (1 << 20) /* Host supports enhanced strobe */ +#define MMC_CAP2_NO_SD (1 << 21) /* Do not send SD commands during initialization */ mmc_pm_flag_t pm_caps; /* supported pm features */ |