aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/sdhci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/sdhci.c')
-rw-r--r--drivers/mmc/sdhci.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
index 4e21b3b9d330..4dab5ec392ea 100644
--- a/drivers/mmc/sdhci.c
+++ b/drivers/mmc/sdhci.c
@@ -4,8 +4,9 @@
4 * Copyright (C) 2005-2006 Pierre Ossman, All Rights Reserved. 4 * Copyright (C) 2005-2006 Pierre Ossman, All Rights Reserved.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify 6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as 7 * it under the terms of the GNU General Public License as published by
8 * published by the Free Software Foundation. 8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
9 */ 10 */
10 11
11#include <linux/delay.h> 12#include <linux/delay.h>
@@ -1262,7 +1263,7 @@ static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot)
1262 mmc->ops = &sdhci_ops; 1263 mmc->ops = &sdhci_ops;
1263 mmc->f_min = host->max_clk / 256; 1264 mmc->f_min = host->max_clk / 256;
1264 mmc->f_max = host->max_clk; 1265 mmc->f_max = host->max_clk;
1265 mmc->caps = MMC_CAP_4_BIT_DATA; 1266 mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_MULTIWRITE | MMC_CAP_BYTEBLOCK;
1266 1267
1267 mmc->ocr_avail = 0; 1268 mmc->ocr_avail = 0;
1268 if (caps & SDHCI_CAN_VDD_330) 1269 if (caps & SDHCI_CAN_VDD_330)