[PATCH] sdhci: remove support for quirks in sdhci-pxa.c -- not used
Philip Rakity
prakity at marvell.com
Fri Jan 21 14:24:54 EST 2011
remove support for platform specific SD quirks. They are
not used today.
New method coming in future patch using platform specific
files in mmc/host
Signed-off-by: Philip Rakity <prakity at marvell.com>
---
arch/arm/plat-pxa/include/plat/sdhci.h | 2 --
drivers/mmc/host/sdhci-pxa.c | 3 ---
2 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/arch/arm/plat-pxa/include/plat/sdhci.h b/arch/arm/plat-pxa/include/plat/sdhci.h
index bd6ac06..3f73f1f 100644
--- a/arch/arm/plat-pxa/include/plat/sdhci.h
+++ b/arch/arm/plat-pxa/include/plat/sdhci.h
@@ -23,12 +23,10 @@
/*
* struct pxa_sdhci_platdata() - Platform device data for PXA SDHCI
* @max_speed: the maximum speed supported
- * @quirks: quirks of specific device
* @flags: flags for platform requirement
*/
struct sdhci_pxa_platdata {
unsigned int max_speed;
- unsigned int quirks;
unsigned int flags;
unsigned short adjust_clocks;
unsigned short clk_select;
diff --git a/drivers/mmc/host/sdhci-pxa.c b/drivers/mmc/host/sdhci-pxa.c
index 8c60d5c..ed044a8 100644
--- a/drivers/mmc/host/sdhci-pxa.c
+++ b/drivers/mmc/host/sdhci-pxa.c
@@ -121,9 +121,6 @@ static int __devinit sdhci_pxa_probe(struct platform_device *pdev)
host->irq = irq;
host->quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
- if (pdata->quirks)
- host->quirks |= pdata->quirks;
-
/* If slot design supports 8 bit data, indicate this to MMC. */
if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT)
host->mmc->caps |= MMC_CAP_8_BIT_DATA;
--
1.7.0.4
More information about the linux-arm-kernel
mailing list