summaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorJaehoon Chung2015-08-06 09:23:26 +0200
committerUlf Hansson2015-08-17 12:45:27 +0200
commit40a7a463a80ae9e3b85a9fd85cf704fb9ac28b6f (patch)
tree306b4ec2b04c8d1995a181e749e45630122bb0f9 /drivers/mmc
parentmmc: dw_mmc: remove the unused blk_setting (diff)
downloadkernel-qcow2-linux-40a7a463a80ae9e3b85a9fd85cf704fb9ac28b6f.tar.gz
kernel-qcow2-linux-40a7a463a80ae9e3b85a9fd85cf704fb9ac28b6f.tar.xz
kernel-qcow2-linux-40a7a463a80ae9e3b85a9fd85cf704fb9ac28b6f.zip
mmc: dw_mmc: print the message for deprecated property
supports-highspeed was deprecated. If someone use it, we need to notice information for it. Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/dw_mmc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
index 091df65f7813..f8ac14a14693 100644
--- a/drivers/mmc/host/dw_mmc.c
+++ b/drivers/mmc/host/dw_mmc.c
@@ -2696,8 +2696,10 @@ 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))
+ 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;
}