Skip to content

Commit

Permalink
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
Browse files Browse the repository at this point in the history
* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:
  [SPARC64]: Fix floppy build failure.
  • Loading branch information
Linus Torvalds committed Mar 7, 2007
2 parents 5b3c118 + 78ad0b8 commit 2f77445
Showing 2 changed files with 11 additions and 11 deletions.
11 changes: 0 additions & 11 deletions include/asm-sparc64/dma.h
Original file line number Diff line number Diff line change
@@ -15,17 +15,6 @@
#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.
*/
11 changes: 11 additions & 0 deletions include/asm-sparc64/floppy.h
Original file line number Diff line number Diff line change
@@ -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) */

0 comments on commit 2f77445

Please sign in to comment.