aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2007-03-08 14:48:36 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2007-03-08 15:00:03 -0800
commit2ef550790ac0d7bb0da1c6432f69f86f55ac1695 (patch)
tree41f25b5bc4ce1a6cc4a5202a084b0aed783d192c /include/asm-sparc64
parent[PATCH] libata-acpi: Try and stop all the non PCI devices crashing (diff)
downloadlinux-dev-2ef550790ac0d7bb0da1c6432f69f86f55ac1695.tar.xz
linux-dev-2ef550790ac0d7bb0da1c6432f69f86f55ac1695.zip
[SPARC64]: Fix PARPORT build (again).
Need to provide {claim,release}_dma_lock() for this guy too. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64')
-rw-r--r--include/asm-sparc64/parport.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/asm-sparc64/parport.h b/include/asm-sparc64/parport.h
index be9509c8f8c1..284dfd01a33d 100644
--- a/include/asm-sparc64/parport.h
+++ b/include/asm-sparc64/parport.h
@@ -19,6 +19,17 @@
*/
#define HAS_DMA
+static DEFINE_SPINLOCK(dma_spin_lock);
+
+#define claim_dma_lock() \
+({ unsigned long flags; \
+ spin_lock_irqsave(&dma_spin_lock, flags); \
+ flags; \
+})
+
+#define release_dma_lock(__flags) \
+ spin_unlock_irqrestore(&dma_spin_lock, __flags);
+
static struct sparc_ebus_info {
struct ebus_dma_info info;
unsigned int addr;