aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Ferre <nicolas.ferre@atmel.com>2013-06-07 11:10:53 -0400
committerVinod Koul <vinod.koul@intel.com>2013-07-05 02:10:55 -0400
commit538eea6c7c2387b11fa5ba919743cd36e3a4d42f (patch)
tree820639c3a9c0e80a1ca52e6834b4d4559dfcdc12
parent62971b29825adb06908bad81e7679d1f7904b24d (diff)
dmaengine: at_hdmac: remove unsuded atc_cleanup_descriptors()
Since patch 7c407d3e54dcc0c79119553c8d5ef176c1d5bc3a (DMA: AT91: Get residual bytes in dma buffer), the function atc_cleanup_descriptors() is not used anymore. We remove it to prevent warnings. Reported-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r--drivers/dma/at_hdmac.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c
index b7050a46bd87..1ee3ed187f4d 100644
--- a/drivers/dma/at_hdmac.c
+++ b/drivers/dma/at_hdmac.c
@@ -417,37 +417,6 @@ static void atc_complete_all(struct at_dma_chan *atchan)
417} 417}
418 418
419/** 419/**
420 * atc_cleanup_descriptors - cleanup up finished descriptors in active_list
421 * @atchan: channel to be cleaned up
422 *
423 * Called with atchan->lock held and bh disabled
424 */
425static void atc_cleanup_descriptors(struct at_dma_chan *atchan)
426{
427 struct at_desc *desc, *_desc;
428 struct at_desc *child;
429
430 dev_vdbg(chan2dev(&atchan->chan_common), "cleanup descriptors\n");
431
432 list_for_each_entry_safe(desc, _desc, &atchan->active_list, desc_node) {
433 if (!(desc->lli.ctrla & ATC_DONE))
434 /* This one is currently in progress */
435 return;
436
437 list_for_each_entry(child, &desc->tx_list, desc_node)
438 if (!(child->lli.ctrla & ATC_DONE))
439 /* Currently in progress */
440 return;
441
442 /*
443 * No descriptors so far seem to be in progress, i.e.
444 * this chain must be done.
445 */
446 atc_chain_complete(atchan, desc);
447 }
448}
449
450/**
451 * atc_advance_work - at the end of a transaction, move forward 420 * atc_advance_work - at the end of a transaction, move forward
452 * @atchan: channel where the transaction ended 421 * @atchan: channel where the transaction ended
453 * 422 *