diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2016-07-28 18:55:27 +0900 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-09-26 21:31:37 +0200 |
commit | 0f75c404503cc49cbe92555fbab80a584c1f4ae2 (patch) | |
tree | 3ef2cfef5897258dba79e859de5063e982ab322a /drivers/mmc | |
parent | 207535698e7dbbeebddce2dbe9dfbecb55b4e999 (diff) | |
download | blackbird-op-linux-0f75c404503cc49cbe92555fbab80a584c1f4ae2.tar.gz blackbird-op-linux-0f75c404503cc49cbe92555fbab80a584c1f4ae2.zip |
mmc: dw_mmc: remove the deprecated "supports-highspeed" property
Remvoe the deprecated "supports-highspeed" property.
DWMMC controller will not use this property anymore.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Reviewed-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/dw_mmc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index 8ee1c86b6eff..4fcbc4012ed0 100644 --- a/drivers/mmc/host/dw_mmc.c +++ b/drivers/mmc/host/dw_mmc.c @@ -2964,11 +2964,6 @@ static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host) return ERR_PTR(ret); } - if (of_find_property(np, "supports-highspeed", NULL)) { - dev_info(dev, "supports-highspeed property is deprecated.\n"); - pdata->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED; - } - return pdata; } |