All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MMC: FSL SDHC: Add support for non-removable card. Kernel version 3.4.48
@ 2013-06-10 17:15 ` Oded Gabbay
  0 siblings, 0 replies; 2+ messages in thread
From: Oded Gabbay @ 2013-06-10 17:15 UTC (permalink / raw)
  To: gregkh, cjb, dirk.behme; +Cc: linux-mmc, linux-kernel, ogabbay

This patch adds support of recognizing non-removable cards
to Freescale's SDHC host driver. This is done by detecting the
attribute "non-removable" in the probe function

This patch depends on patch[2/3] from 6-jun-2013:
https://patchwork.kernel.org/patch/2649381/

This patch is instead of patch[3/3] from 6-jun-2013:
https://patchwork.kernel.org/patch/2649231/

Signed-off-by: Oded Gabbay <ogabbay@advaoptical.com>
---
 drivers/mmc/host/sdhci-of-esdhc.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/mmc/host/sdhci-of-esdhc.c b/drivers/mmc/host/sdhci-of-esdhc.c
index e70f22f..a6e068c 100644
--- a/drivers/mmc/host/sdhci-of-esdhc.c
+++ b/drivers/mmc/host/sdhci-of-esdhc.c
@@ -222,6 +222,10 @@ static int __devinit sdhci_esdhc_probe(struct platform_device *pdev)
 		host->quirks2 |= SDHCI_QUIRK2_BROKEN_HOST_CONTROL;
 	}
 
+	/* Check if card is non-removable */
+	if (of_find_property(np, "non-removable", NULL))
+		host->caps |= MMC_CAP_NONREMOVABLE;
+
 	ret = sdhci_add_host(host);
 	if (ret)
 		sdhci_pltfm_free(pdev);
-- 
1.8.3


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

* [PATCH] MMC: FSL SDHC: Add support for non-removable card. Kernel version 3.4.48
@ 2013-06-10 17:15 ` Oded Gabbay
  0 siblings, 0 replies; 2+ messages in thread
From: Oded Gabbay @ 2013-06-10 17:15 UTC (permalink / raw)
  To: gregkh, cjb, dirk.behme; +Cc: linux-mmc, linux-kernel, ogabbay

This patch adds support of recognizing non-removable cards
to Freescale's SDHC host driver. This is done by detecting the
attribute "non-removable" in the probe function

This patch depends on patch[2/3] from 6-jun-2013:
https://patchwork.kernel.org/patch/2649381/

This patch is instead of patch[3/3] from 6-jun-2013:
https://patchwork.kernel.org/patch/2649231/

Signed-off-by: Oded Gabbay <ogabbay@advaoptical.com>
---
 drivers/mmc/host/sdhci-of-esdhc.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/mmc/host/sdhci-of-esdhc.c b/drivers/mmc/host/sdhci-of-esdhc.c
index e70f22f..a6e068c 100644
--- a/drivers/mmc/host/sdhci-of-esdhc.c
+++ b/drivers/mmc/host/sdhci-of-esdhc.c
@@ -222,6 +222,10 @@ static int __devinit sdhci_esdhc_probe(struct platform_device *pdev)
 		host->quirks2 |= SDHCI_QUIRK2_BROKEN_HOST_CONTROL;
 	}
 
+	/* Check if card is non-removable */
+	if (of_find_property(np, "non-removable", NULL))
+		host->caps |= MMC_CAP_NONREMOVABLE;
+
 	ret = sdhci_add_host(host);
 	if (ret)
 		sdhci_pltfm_free(pdev);
-- 
1.8.3


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

end of thread, other threads:[~2013-06-10 17:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-10 17:15 [PATCH] MMC: FSL SDHC: Add support for non-removable card. Kernel version 3.4.48 Oded Gabbay
2013-06-10 17:15 ` Oded Gabbay

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.