Commit 09270379 authored by Carlos Aguiar's avatar Carlos Aguiar Committed by Tony Lindgren

Add MMC_CAP_{MULTIWRITE,BYTEBLOCK} flags in omap.c

Add MMC_CAP_{MULTIWRITE,BYTEBLOCK} flags

Signed-off-by: Carlos Eduardo Aguiar <carlos.aguiar <at> indt.org.br>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent f6cfbcda
...@@ -1088,8 +1088,8 @@ static int __init mmc_omap_probe(struct platform_device *pdev) ...@@ -1088,8 +1088,8 @@ static int __init mmc_omap_probe(struct platform_device *pdev)
mmc->ops = &mmc_omap_ops; mmc->ops = &mmc_omap_ops;
mmc->f_min = 400000; mmc->f_min = 400000;
mmc->f_max = 24000000; mmc->f_max = 24000000;
mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_CAP_MULTIWRITE mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
| MMC_CAP_BYTEBLOCK; mmc->caps = MMC_CAP_MULTIWRITE | MMC_CAP_BYTEBLOCK;
if (minfo->wire4) if (minfo->wire4)
mmc->caps |= MMC_CAP_4_BIT_DATA; mmc->caps |= MMC_CAP_4_BIT_DATA;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment