diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2016-02-01 21:07:35 +0900 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-02-29 11:03:02 +0100 |
commit | d3204ab9951b755d35c540836402ae2668d3158b (patch) | |
tree | 4ded45036d74af08bff756f67389664076899a18 /include/linux/mmc | |
parent | f2c90c389e361075850ebc67a84f629fb595d24a (diff) | |
download | blackbird-obmc-linux-d3204ab9951b755d35c540836402ae2668d3158b.tar.gz blackbird-obmc-linux-d3204ab9951b755d35c540836402ae2668d3158b.zip |
mmc: core: remove the MMC_DATA_STREAM flag
It's not set to MMC_DATA_STREAM anywhere.
It seems that it had been used with CMD11/CMD20.
But according to Spec, CMD11/CMD20 are obsolete command.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'include/linux/mmc')
-rw-r--r-- | include/linux/mmc/core.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mmc/core.h b/include/linux/mmc/core.h index 37967b6da03c..b01e77de1a74 100644 --- a/include/linux/mmc/core.h +++ b/include/linux/mmc/core.h @@ -113,7 +113,6 @@ struct mmc_data { #define MMC_DATA_WRITE (1 << 8) #define MMC_DATA_READ (1 << 9) -#define MMC_DATA_STREAM (1 << 10) unsigned int bytes_xfered; |