From: Barry Song Date: Thu, 27 Sep 2012 08:36:10 +0000 (+0800) Subject: dmaengine: sirf: fix a typo in moving running dma_desc to active queue X-Git-Tag: v3.7-rc3~8^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26fd12209c08fe947be1828896ef4ffc5bd0e6df;p=pandora-kernel.git dmaengine: sirf: fix a typo in moving running dma_desc to active queue list_move_tail(&schan->queued, &schan->active) makes the list_empty(schan->queued) undefined, we either should change it to: list_move_tail(schan->queued.next, &schan->active) or list_move_tail(&sdesc->node, &schan->active) Signed-off-by: Barry Song Cc: stable Signed-off-by: Vinod Koul --- Reading git-diff-tree failed