summaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2016-07-28 18:55:27 +0900
committerUlf Hansson <ulf.hansson@linaro.org>2016-09-26 21:31:37 +0200
commit0f75c404503cc49cbe92555fbab80a584c1f4ae2 (patch)
tree3ef2cfef5897258dba79e859de5063e982ab322a /drivers/mmc
parent207535698e7dbbeebddce2dbe9dfbecb55b4e999 (diff)
downloadlinux-0-day-0f75c404503cc49cbe92555fbab80a584c1f4ae2.tar.gz
linux-0-day-0f75c404503cc49cbe92555fbab80a584c1f4ae2.tar.xz
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.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
index 8ee1c86b6eff4..4fcbc4012ed03 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;
}