summaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorYong Zhang2010-02-05 14:52:37 +0100
committerDan Williams2010-02-05 23:35:53 +0100
commitb953df7c70740cd7593072ebec77a8f658505630 (patch)
tree3f831c33f2b1a0173e7142226869dababcd16422 /drivers/dma
parentioat: fix infinite timeout checking in ioat2_quiesce (diff)
downloadkernel-qcow2-linux-b953df7c70740cd7593072ebec77a8f658505630.tar.gz
kernel-qcow2-linux-b953df7c70740cd7593072ebec77a8f658505630.tar.xz
kernel-qcow2-linux-b953df7c70740cd7593072ebec77a8f658505630.zip
dmaengine: correct onstack wait_queue_head declaration
Use DECLARE_WAIT_QUEUE_HEAD_ONSTACK to make lockdep happy Signed-off-by: Yong Zhang <yong.zhang0@gmail.com> Cc: Maciej Sosnowski <maciej.sosnowski@intel.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma')
-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);
}