6918ea2484
Update the 3.10 rasperry patches by rebasing raspberry/rpi-3.10-y against linux-stable/v3.10.49. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 42678
71 lines
2 KiB
Diff
71 lines
2 KiB
Diff
From 24ecdf1266c6dd4213f7fc5e2a01c3b661877c81 Mon Sep 17 00:00:00 2001
|
|
From: ddv2005 <ddv@abinet.com>
|
|
Date: Sun, 5 Aug 2012 10:42:12 -0400
|
|
Subject: [PATCH 024/196] Fix spinlock recursion in sdhci-bcm2708.c
|
|
|
|
---
|
|
drivers/mmc/host/sdhci-bcm2708.c | 14 +++++++-------
|
|
1 file changed, 7 insertions(+), 7 deletions(-)
|
|
|
|
diff --git a/drivers/mmc/host/sdhci-bcm2708.c b/drivers/mmc/host/sdhci-bcm2708.c
|
|
index 8243593..7a703c2 100644
|
|
--- a/drivers/mmc/host/sdhci-bcm2708.c
|
|
+++ b/drivers/mmc/host/sdhci-bcm2708.c
|
|
@@ -643,11 +643,11 @@ void
|
|
sdhci_bcm2708_platdma_reset(struct sdhci_host *host, struct mmc_data *data)
|
|
{
|
|
struct sdhci_bcm2708_priv *host_priv = SDHCI_HOST_PRIV(host);
|
|
- unsigned long flags;
|
|
+// unsigned long flags;
|
|
|
|
BUG_ON(NULL == host);
|
|
|
|
- spin_lock_irqsave(&host->lock, flags);
|
|
+// spin_lock_irqsave(&host->lock, flags);
|
|
|
|
if (host_priv->dma_wanted) {
|
|
if (NULL == data) {
|
|
@@ -727,7 +727,7 @@ sdhci_bcm2708_platdma_reset(struct sdhci_host *host, struct mmc_data *data)
|
|
#endif
|
|
}
|
|
|
|
- spin_unlock_irqrestore(&host->lock, flags);
|
|
+// spin_unlock_irqrestore(&host->lock, flags);
|
|
}
|
|
|
|
|
|
@@ -740,11 +740,11 @@ static void sdhci_bcm2708_dma_complete_irq(struct sdhci_host *host,
|
|
int sg_len;
|
|
int sg_ix;
|
|
int sg_todo;
|
|
- unsigned long flags;
|
|
+// unsigned long flags;
|
|
|
|
BUG_ON(NULL == host);
|
|
|
|
- spin_lock_irqsave(&host->lock, flags);
|
|
+// spin_lock_irqsave(&host->lock, flags);
|
|
data = host->data;
|
|
|
|
#ifdef CHECK_DMA_USE
|
|
@@ -769,7 +769,7 @@ static void sdhci_bcm2708_dma_complete_irq(struct sdhci_host *host,
|
|
|
|
if (NULL == data) {
|
|
DBG("PDMA unused completion - status 0x%X\n", dma_cs);
|
|
- spin_unlock_irqrestore(&host->lock, flags);
|
|
+// spin_unlock_irqrestore(&host->lock, flags);
|
|
return;
|
|
}
|
|
sg = data->sg;
|
|
@@ -862,7 +862,7 @@ static void sdhci_bcm2708_dma_complete_irq(struct sdhci_host *host,
|
|
SDHCI_INT_SPACE_AVAIL);
|
|
}
|
|
}
|
|
- spin_unlock_irqrestore(&host->lock, flags);
|
|
+// spin_unlock_irqrestore(&host->lock, flags);
|
|
}
|
|
|
|
static irqreturn_t sdhci_bcm2708_dma_irq(int irq, void *dev_id)
|
|
--
|
|
1.9.1
|
|
|