diff options
-rw-r--r-- | drivers/mmc/host/sdhci-s3c.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c index aacb862ecc8..a7710f55784 100644 --- a/drivers/mmc/host/sdhci-s3c.c +++ b/drivers/mmc/host/sdhci-s3c.c | |||
@@ -427,6 +427,10 @@ static int __devinit sdhci_s3c_probe(struct platform_device *pdev) | |||
427 | /* HSMMC on Samsung SoCs uses SDCLK as timeout clock */ | 427 | /* HSMMC on Samsung SoCs uses SDCLK as timeout clock */ |
428 | host->quirks |= SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK; | 428 | host->quirks |= SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK; |
429 | 429 | ||
430 | /* It supports additional host capabilities if needed */ | ||
431 | if (pdata->host_caps) | ||
432 | host->mmc->caps |= pdata->host_caps; | ||
433 | |||
430 | ret = sdhci_add_host(host); | 434 | ret = sdhci_add_host(host); |
431 | if (ret) { | 435 | if (ret) { |
432 | dev_err(dev, "sdhci_add_host() failed\n"); | 436 | dev_err(dev, "sdhci_add_host() failed\n"); |