From: Jaehoon Chung Date: Thu, 28 Jul 2016 09:55:27 +0000 (+0900) Subject: mmc: dw_mmc: remove the deprecated "supports-highspeed" property X-Git-Tag: v5.15~12757^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f75c404503cc49cbe92555fbab80a584c1f4ae2;p=platform%2Fkernel%2Flinux-starfive.git 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 Reviewed-by: Shawn Lin Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index 8ee1c86..4fcbc40 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; }