diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2016-07-15 10:54:51 +0900 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-07-25 10:34:50 +0200 |
commit | 2c4c7146c7f6cffcbd71f1df95e6bc6727324e05 (patch) | |
tree | 88eb69cd61d80057c95fcd432777a73559a00e5e /drivers/mmc | |
parent | 6024e16654c1e1a2475e848d735963d05a12dba9 (diff) | |
download | linux-2c4c7146c7f6cffcbd71f1df95e6bc6727324e05.tar.gz linux-2c4c7146c7f6cffcbd71f1df95e6bc6727324e05.tar.bz2 linux-2c4c7146c7f6cffcbd71f1df95e6bc6727324e05.zip |
mmc: dw_mmc: rockchip: unset the MMC_CAP_ERASE flag
In dw_mmc.c, it's enabled by default.
It doesn't need to set MMC_CAP_ERASE in rockchip anymore.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Acked-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-rockchip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mmc/host/dw_mmc-rockchip.c b/drivers/mmc/host/dw_mmc-rockchip.c index d3cf1f1f6a74..25eae359a5ea 100644 --- a/drivers/mmc/host/dw_mmc-rockchip.c +++ b/drivers/mmc/host/dw_mmc-rockchip.c @@ -294,10 +294,10 @@ static int dw_mci_rockchip_init(struct dw_mci *host) /* Common capabilities of RK3288 SoC */ static unsigned long dw_mci_rk3288_dwmmc_caps[4] = { - MMC_CAP_ERASE | MMC_CAP_CMD23, - MMC_CAP_ERASE | MMC_CAP_CMD23, - MMC_CAP_ERASE | MMC_CAP_CMD23, - MMC_CAP_ERASE | MMC_CAP_CMD23, + MMC_CAP_CMD23, + MMC_CAP_CMD23, + MMC_CAP_CMD23, + MMC_CAP_CMD23, }; static const struct dw_mci_drv_data rk2928_drv_data = { |