linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V7 1/4] mmc: sdhci-esdhc: remove SDHCI_QUIRK_NO_CARD_NO_RESET from ESDHC_DEFAULT_QUIRKS
@ 2011-03-18  9:56 Richard Zhu
  2011-03-18  9:56 ` [PATCH V7 2/4] mmc: add the abort CMDTYE bits definition Richard Zhu
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Richard Zhu @ 2011-03-18  9:56 UTC (permalink / raw)
  To: linux-arm-kernel

sdhci-esdhc-imx does not need SDHCI_QUIRK_NO_CARD_NO_RESET. Make it OF-specific.

Signed-off-by: Richard Zhu <Hong-Xing.Zhu@freescale.com>
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
---
 drivers/mmc/host/sdhci-esdhc.h    |    3 +--
 drivers/mmc/host/sdhci-of-esdhc.c |    3 ++-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/mmc/host/sdhci-esdhc.h b/drivers/mmc/host/sdhci-esdhc.h
index c55aae8..c3b08f1 100644
--- a/drivers/mmc/host/sdhci-esdhc.h
+++ b/drivers/mmc/host/sdhci-esdhc.h
@@ -23,8 +23,7 @@
 				SDHCI_QUIRK_NONSTANDARD_CLOCK | \
 				SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK | \
 				SDHCI_QUIRK_PIO_NEEDS_DELAY | \
-				SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET | \
-				SDHCI_QUIRK_NO_CARD_NO_RESET)
+				SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET)
 
 #define ESDHC_SYSTEM_CONTROL	0x2c
 #define ESDHC_CLOCK_MASK	0x0000fff0
diff --git a/drivers/mmc/host/sdhci-of-esdhc.c b/drivers/mmc/host/sdhci-of-esdhc.c
index 08161f6..ba40d6d 100644
--- a/drivers/mmc/host/sdhci-of-esdhc.c
+++ b/drivers/mmc/host/sdhci-of-esdhc.c
@@ -74,7 +74,8 @@ static unsigned int esdhc_of_get_min_clock(struct sdhci_host *host)
 
 struct sdhci_of_data sdhci_esdhc = {
 	/* card detection could be handled via GPIO */
-	.quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_BROKEN_CARD_DETECTION,
+	.quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_BROKEN_CARD_DETECTION
+		| SDHCI_QUIRK_NO_CARD_NO_RESET,
 	.ops = {
 		.read_l = sdhci_be32bs_readl,
 		.read_w = esdhc_readw,
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [PATCH V7 0/4] mmc: one comment is missing addressed in the previous review.
@ 2011-03-21  3:32 Richard Zhu
  2011-03-21  3:32 ` [PATCH V7 3/4] mmc: sdhci-esdhc: make the writel/readl as the general APIs Richard Zhu
  0 siblings, 1 reply; 9+ messages in thread
From: Richard Zhu @ 2011-03-21  3:32 UTC (permalink / raw)
  To: linux-arm-kernel

One comment is missing addressed in the previous review round,
complement it into this review round.

[PATCH V7 1/4] mmc: sdhci-esdhc: remove SDHCI_QUIRK_NO_CARD_NO_RESET from ESDHC_DEFAULT_QUIRKS
[PATCH V7 2/4] mmc: add the abort CMDTYE bits definition
[PATCH V7 3/4] mmc: sdhci-esdhc: make the writel/readl as the general APIs
[PATCH V7 4/4] mmc: sdhci-esdhc: enable esdhc on imx53

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCH V7 0/4] mmc: one comment is missing addressed.
@ 2011-03-21  5:22 Richard Zhu
  2011-03-21  5:22 ` [PATCH V7 3/4] mmc: sdhci-esdhc: make the writel/readl as the general APIs Richard Zhu
  0 siblings, 1 reply; 9+ messages in thread
From: Richard Zhu @ 2011-03-21  5:22 UTC (permalink / raw)
  To: linux-arm-kernel

One comment is missing addressed in the previous review round,
complement it into this review round.
----------------------------
[PATCH V7 1/4] mmc: sdhci-esdhc: remove SDHCI_QUIRK_NO_CARD_NO_RESET from ESDHC_DEFAULT_QUIRKS
[PATCH V7 2/4] mmc: add the abort CMDTYE bits definition
[PATCH V7 3/4] mmc: sdhci-esdhc: make the writel/readl as the general APIs
[PATCH V7 4/4] mmc: sdhci-esdhc: enable esdhc on imx53

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-03-24 23:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-18  9:56 [PATCH V7 1/4] mmc: sdhci-esdhc: remove SDHCI_QUIRK_NO_CARD_NO_RESET from ESDHC_DEFAULT_QUIRKS Richard Zhu
2011-03-18  9:56 ` [PATCH V7 2/4] mmc: add the abort CMDTYE bits definition Richard Zhu
2011-03-18  9:56 ` [PATCH V7 3/4] mmc: sdhci-esdhc: make the writel/readl as the general APIs Richard Zhu
2011-03-18 13:52   ` Wolfram Sang
2011-03-18  9:56 ` [PATCH V7 4/4] mmc: sdhci-esdhc: enable esdhc on imx53 Richard Zhu
  -- strict thread matches above, loose matches on Subject: below --
2011-03-21  3:32 [PATCH V7 0/4] mmc: one comment is missing addressed in the previous review Richard Zhu
2011-03-21  3:32 ` [PATCH V7 3/4] mmc: sdhci-esdhc: make the writel/readl as the general APIs Richard Zhu
2011-03-21  5:22 [PATCH V7 0/4] mmc: one comment is missing addressed Richard Zhu
2011-03-21  5:22 ` [PATCH V7 3/4] mmc: sdhci-esdhc: make the writel/readl as the general APIs Richard Zhu
2011-03-21 13:06   ` Wolfram Sang
2011-03-24 23:14   ` Chris Ball

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).