]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[SPARC64]: Fix floppy build failure.
authorDavid S. Miller <davem@sunset.davemloft.net>
Mon, 5 Mar 2007 04:36:18 +0000 (20:36 -0800)
committerDavid S. Miller <davem@sunset.davemloft.net>
Mon, 5 Mar 2007 21:22:28 +0000 (13:22 -0800)
Just define a local {claim,release}_dma_lock() implementation
for the floppy driver to use so we don't need to define and
export to modules the silly dma_spin_lock.

Signed-off-by: David S. Miller <davem@davemloft.net>
include/asm-sparc64/dma.h
include/asm-sparc64/floppy.h

index 1bf4f7a8fbe1a7c3413646f044561a7f6e74e5b6..a9fd0618397231e917bd32c8665af80d1495c849 100644 (file)
 #include <asm/delay.h>
 #include <asm/oplib.h>
 
-extern spinlock_t  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);
-
 /* These are irrelevant for Sparc DMA, but we leave it in so that
  * things can compile.
  */
index dbe033e494dbeabf14524c1b78b71e6659d26cd7..331013a0053e667d55dddaef3870e7f6714421ab 100644 (file)
@@ -854,4 +854,15 @@ static unsigned long __init sun_floppy_init(void)
 
 #define EXTRA_FLOPPY_PARAMS
 
+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);
+
 #endif /* !(__ASM_SPARC64_FLOPPY_H) */