diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2013-09-16 12:06:15 +0200 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-10-30 20:26:31 -0400 |
commit | 726d6f2374410d980341bfeb49399614e689e702 (patch) | |
tree | 5bf34c9ed06f802ef468a0af8cfb945ff0f7fe70 /drivers/mmc/core/sdio.c | |
parent | ce69d37b7d8fa692c45d71d94aa0c921859b82ce (diff) | |
download | linux-726d6f2374410d980341bfeb49399614e689e702.tar.gz linux-726d6f2374410d980341bfeb49399614e689e702.tar.bz2 linux-726d6f2374410d980341bfeb49399614e689e702.zip |
mmc: core: Collect common code for card ocr validation
Since mmc_select_voltage now only gets called from the attach sequence,
it makes sense to move the out of spec validations of the card ocr into
this function.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/core/sdio.c')
-rw-r--r-- | drivers/mmc/core/sdio.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c index b7c19e894dd3..4d721c6e2af0 100644 --- a/drivers/mmc/core/sdio.c +++ b/drivers/mmc/core/sdio.c @@ -1133,16 +1133,6 @@ int mmc_attach_sdio(struct mmc_host *host) if (host->ocr_avail_sdio) host->ocr_avail = host->ocr_avail_sdio; - /* - * Sanity check the voltages that the card claims to - * support. - */ - if (ocr & 0x7F) { - pr_warning("%s: card claims to support voltages " - "below the defined range. These will be ignored.\n", - mmc_hostname(host)); - ocr &= ~0x7F; - } rocr = mmc_select_voltage(host, ocr); |