diff options
author | Jerry Huang <Chang-Ming.Huang@freescale.com> | 2012-10-25 09:47:19 +0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-11-07 23:55:29 +0400 |
commit | 63ef5d8c28b2a944f104d854254941e7375c85a3 (patch) | |
tree | f4102bfc4ab13f0ec07d28a635170373160e522d /drivers/mmc/host/sdhci.h | |
parent | 00956ea360c3825ac9fd337758e07e193f66d1d9 (diff) | |
download | linux-63ef5d8c28b2a944f104d854254941e7375c85a3.tar.xz |
mmc: sdhci-of-esdhc: disable CMD23 for some Freescale SoCs
CMD23 causes lots of errors in kernel on some freescale SoCs
(P1020, P1021, P1022, P1024, P1025 and P4080) when MMC card used,
which is because these controllers does not support CMD23,
even on the SoCs which declares CMD23 is supported.
Therefore, we'll not use CMD23.
Signed-off-by: Jerry Huang <Chang-Ming.Huang@freescale.com>
Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
Acked-by: Anton Vorontsov <cbouatmailru@gmail.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/host/sdhci.h')
-rw-r--r-- | drivers/mmc/host/sdhci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h index 97653ea8942b..71a4a7ed46c5 100644 --- a/drivers/mmc/host/sdhci.h +++ b/drivers/mmc/host/sdhci.h @@ -278,6 +278,7 @@ struct sdhci_ops { void (*hw_reset)(struct sdhci_host *host); void (*platform_suspend)(struct sdhci_host *host); void (*platform_resume)(struct sdhci_host *host); + void (*platform_init)(struct sdhci_host *host); }; #ifdef CONFIG_MMC_SDHCI_IO_ACCESSORS |