diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2016-02-01 21:07:33 +0900 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-02-29 11:03:01 +0100 |
commit | 5a6c15a2a3de64c432a5e55132fd9658092d6442 (patch) | |
tree | e6a8d650651b3e9ab58a2e19cdc9369b3122fd17 /drivers/mmc/host/s3cmci.c | |
parent | 2249f6a06e9ef98e73aaf40a4b0db84a3a5e3b5c (diff) | |
download | linux-5a6c15a2a3de64c432a5e55132fd9658092d6442.tar.gz linux-5a6c15a2a3de64c432a5e55132fd9658092d6442.tar.bz2 linux-5a6c15a2a3de64c432a5e55132fd9658092d6442.zip |
mmc: s3cmci: remove the MMC_DATA_STREAM flag
Remove the MMC_DATA_STREAM flag because it isn't used anymore.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/s3cmci.c')
-rw-r--r-- | drivers/mmc/host/s3cmci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c index 6291d5042ef2..39814f3dc96f 100644 --- a/drivers/mmc/host/s3cmci.c +++ b/drivers/mmc/host/s3cmci.c @@ -1014,8 +1014,7 @@ static int s3cmci_setup_data(struct s3cmci_host *host, struct mmc_data *data) if (host->bus_width == MMC_BUS_WIDTH_4) dcon |= S3C2410_SDIDCON_WIDEBUS; - if (!(data->flags & MMC_DATA_STREAM)) - dcon |= S3C2410_SDIDCON_BLOCKMODE; + dcon |= S3C2410_SDIDCON_BLOCKMODE; if (data->flags & MMC_DATA_WRITE) { dcon |= S3C2410_SDIDCON_TXAFTERRESP; |