diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-06 22:57:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-06 22:57:46 -0500 |
commit | 2f774456e4b9bc3d4fb3522b2482c7acfa2df197 (patch) | |
tree | 38869c0d82a1d47cc3c9cf5c148be2e996d605ea | |
parent | 5b3c1184e78dd7d74eced83b25af88cf1d13e686 (diff) | |
parent | 78ad0b840848bebe266bcc8f1f9be429d2105264 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:
[SPARC64]: Fix floppy build failure.
-rw-r--r-- | include/asm-sparc64/dma.h | 11 | ||||
-rw-r--r-- | include/asm-sparc64/floppy.h | 11 |
2 files changed, 11 insertions, 11 deletions
diff --git a/include/asm-sparc64/dma.h b/include/asm-sparc64/dma.h index 1bf4f7a8fbe1..a9fd06183972 100644 --- a/include/asm-sparc64/dma.h +++ b/include/asm-sparc64/dma.h | |||
@@ -15,17 +15,6 @@ | |||
15 | #include <asm/delay.h> | 15 | #include <asm/delay.h> |
16 | #include <asm/oplib.h> | 16 | #include <asm/oplib.h> |
17 | 17 | ||
18 | extern spinlock_t dma_spin_lock; | ||
19 | |||
20 | #define claim_dma_lock() \ | ||
21 | ({ unsigned long flags; \ | ||
22 | spin_lock_irqsave(&dma_spin_lock, flags); \ | ||
23 | flags; \ | ||
24 | }) | ||
25 | |||
26 | #define release_dma_lock(__flags) \ | ||
27 | spin_unlock_irqrestore(&dma_spin_lock, __flags); | ||
28 | |||
29 | /* These are irrelevant for Sparc DMA, but we leave it in so that | 18 | /* These are irrelevant for Sparc DMA, but we leave it in so that |
30 | * things can compile. | 19 | * things can compile. |
31 | */ | 20 | */ |
diff --git a/include/asm-sparc64/floppy.h b/include/asm-sparc64/floppy.h index dbe033e494db..331013a0053e 100644 --- a/include/asm-sparc64/floppy.h +++ b/include/asm-sparc64/floppy.h | |||
@@ -854,4 +854,15 @@ static unsigned long __init sun_floppy_init(void) | |||
854 | 854 | ||
855 | #define EXTRA_FLOPPY_PARAMS | 855 | #define EXTRA_FLOPPY_PARAMS |
856 | 856 | ||
857 | static DEFINE_SPINLOCK(dma_spin_lock); | ||
858 | |||
859 | #define claim_dma_lock() \ | ||
860 | ({ unsigned long flags; \ | ||
861 | spin_lock_irqsave(&dma_spin_lock, flags); \ | ||
862 | flags; \ | ||
863 | }) | ||
864 | |||
865 | #define release_dma_lock(__flags) \ | ||
866 | spin_unlock_irqrestore(&dma_spin_lock, __flags); | ||
867 | |||
857 | #endif /* !(__ASM_SPARC64_FLOPPY_H) */ | 868 | #endif /* !(__ASM_SPARC64_FLOPPY_H) */ |