aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYong Zhang <[email protected]>2010-02-05 21:52:37 +0800
committerDan Williams <[email protected]>2010-02-05 15:35:53 -0700
commitb953df7c70740cd7593072ebec77a8f658505630 (patch)
tree3f831c33f2b1a0173e7142226869dababcd16422
parent7e55a70c5b9a57c12f49c44b0847c9343d4f54e4 (diff)
dmaengine: correct onstack wait_queue_head declaration
Use DECLARE_WAIT_QUEUE_HEAD_ONSTACK to make lockdep happy Signed-off-by: Yong Zhang <[email protected]> Cc: Maciej Sosnowski <[email protected]> Cc: Andrew Morton <[email protected]> Cc: Nicolas Ferre <[email protected]> Signed-off-by: Dan Williams <[email protected]>
-rw-r--r--drivers/dma/dmatest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/dmatest.c b/drivers/dma/dmatest.c
index 8b905161fbf4..948d563941c9 100644
--- a/drivers/dma/dmatest.c
+++ b/drivers/dma/dmatest.c
@@ -467,7 +467,7 @@ err_srcs:
if (iterations > 0)
while (!kthread_should_stop()) {
- DECLARE_WAIT_QUEUE_HEAD(wait_dmatest_exit);
+ DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wait_dmatest_exit);
interruptible_sleep_on(&wait_dmatest_exit);
}