[tip:core/locking] arm: Bcmring: semaphore cleanup

From: tip-bot for Thomas Gleixner
Date: Tue Oct 12 2010 - 11:53:52 EST


Commit-ID: 5356d94872502e77317f82e8fcae2a0b162af07c
Gitweb: http://git.kernel.org/tip/5356d94872502e77317f82e8fcae2a0b162af07c
Author: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
AuthorDate: Tue, 7 Sep 2010 14:33:52 +0000
Committer: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
CommitDate: Tue, 12 Oct 2010 17:36:10 +0200

arm: Bcmring: semaphore cleanup

Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
Cc: Christoph Hellwig <hch@xxxxxxxxxxxxx>
Cc: Leo Chen <leochen@xxxxxxxxxxxx>
LKML-Reference: <20100907125057.371771121@xxxxxxxxxxxxx>

---
arch/arm/mach-bcmring/dma.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-bcmring/dma.c b/arch/arm/mach-bcmring/dma.c
index 29c0a91..77eb35c 100644
--- a/arch/arm/mach-bcmring/dma.c
+++ b/arch/arm/mach-bcmring/dma.c
@@ -691,7 +691,7 @@ int dma_init(void)

memset(&gDMA, 0, sizeof(gDMA));

- init_MUTEX_LOCKED(&gDMA.lock);
+ sema_init(&gDMA.lock, 0);
init_waitqueue_head(&gDMA.freeChannelQ);

/* Initialize the Hardware */
@@ -1574,7 +1574,7 @@ int dma_init_mem_map(DMA_MemMap_t *memMap)
{
memset(memMap, 0, sizeof(*memMap));

- init_MUTEX(&memMap->lock);
+ sema_init(&memMap->lock, 1);

return 0;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/