summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/s3c_sdi.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2015-03-23 17:56:59 -0500
committerPantelis Antoniou <pantelis.antoniou@konsulko.com>2015-05-05 12:29:36 +0300
commit5a20397b007e9c1482997cf4418639e9ba3df5fe (patch)
tree033c44d29fdf78cc0dd1719066da0308fcc627a2 /drivers/mmc/s3c_sdi.c
parentbd47c13583f2c4bbd29914063d2bf3a98fcdf5cb (diff)
downloadtalos-obmc-uboot-5a20397b007e9c1482997cf4418639e9ba3df5fe.tar.gz
talos-obmc-uboot-5a20397b007e9c1482997cf4418639e9ba3df5fe.zip
mmc: remove the MMC_MODE_HC flag
High capacity support is not a host capability, but a device capability that is queried via the OCR. The flag in the operating conditions request argument can just be set unconditionally. This matches the Linux implementation. [panto] Hand merged and renumbering MMC_MODE_DDR_52MHz. Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Pantelis Antoniou <pantelis.antoniou@konsulko.com> Cc: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
Diffstat (limited to 'drivers/mmc/s3c_sdi.c')
-rw-r--r--drivers/mmc/s3c_sdi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/s3c_sdi.c b/drivers/mmc/s3c_sdi.c
index 1b5b70512d..02d1138a5f 100644
--- a/drivers/mmc/s3c_sdi.c
+++ b/drivers/mmc/s3c_sdi.c
@@ -298,7 +298,7 @@ int s3cmmc_initialize(bd_t *bis, int (*getcd)(struct mmc *),
cfg->name = "S3C MMC";
cfg->ops = &s3cmmc_ops;
cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
- cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_HC | MMC_MODE_HS;
+ cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_HS;
cfg->f_min = 400000;
cfg->f_max = get_PCLK() / 2;
cfg->b_max = 0x80;
OpenPOWER on IntegriCloud