dma_chan_tx       129 drivers/mmc/host/moxart-mmc.c 	struct dma_chan			*dma_chan_tx;
dma_chan_tx       268 drivers/mmc/host/moxart-mmc.c 		dma_chan = host->dma_chan_tx;
dma_chan_tx       476 drivers/mmc/host/moxart-mmc.c 			dmaengine_terminate_all(host->dma_chan_tx);
dma_chan_tx       611 drivers/mmc/host/moxart-mmc.c 	host->dma_chan_tx = dma_request_slave_channel_reason(dev, "tx");
dma_chan_tx       621 drivers/mmc/host/moxart-mmc.c 	if (IS_ERR(host->dma_chan_tx) || IS_ERR(host->dma_chan_rx)) {
dma_chan_tx       622 drivers/mmc/host/moxart-mmc.c 		if (PTR_ERR(host->dma_chan_tx) == -EPROBE_DEFER ||
dma_chan_tx       631 drivers/mmc/host/moxart-mmc.c 			 host->dma_chan_tx, host->dma_chan_rx);
dma_chan_tx       640 drivers/mmc/host/moxart-mmc.c 		dmaengine_slave_config(host->dma_chan_tx, &cfg);
dma_chan_tx       693 drivers/mmc/host/moxart-mmc.c 		if (!IS_ERR(host->dma_chan_tx))
dma_chan_tx       694 drivers/mmc/host/moxart-mmc.c 			dma_release_channel(host->dma_chan_tx);
dma_chan_tx        71 drivers/mmc/host/pxamci.c 	struct dma_chan		*dma_chan_tx;
dma_chan_tx       195 drivers/mmc/host/pxamci.c 		chan = host->dma_chan_tx;
dma_chan_tx       322 drivers/mmc/host/pxamci.c 			dma_async_issue_pending(host->dma_chan_tx);
dma_chan_tx       341 drivers/mmc/host/pxamci.c 		chan = host->dma_chan_tx;
dma_chan_tx       545 drivers/mmc/host/pxamci.c 		chan = host->dma_chan_tx;
dma_chan_tx       720 drivers/mmc/host/pxamci.c 	host->dma_chan_tx = dma_request_slave_channel(dev, "tx");
dma_chan_tx       721 drivers/mmc/host/pxamci.c 	if (host->dma_chan_tx == NULL) {
dma_chan_tx       771 drivers/mmc/host/pxamci.c 		if (host->dma_chan_tx)
dma_chan_tx       772 drivers/mmc/host/pxamci.c 			dma_release_channel(host->dma_chan_tx);
dma_chan_tx       797 drivers/mmc/host/pxamci.c 		dmaengine_terminate_all(host->dma_chan_tx);
dma_chan_tx       799 drivers/mmc/host/pxamci.c 		dma_release_channel(host->dma_chan_tx);
dma_chan_tx       219 drivers/tty/serial/imx.c 	struct dma_chan		*dma_chan_rx, *dma_chan_tx;
dma_chan_tx       592 drivers/tty/serial/imx.c 	struct dma_chan	*chan = sport->dma_chan_tx;
dma_chan_tx      1245 drivers/tty/serial/imx.c 	if (sport->dma_chan_tx) {
dma_chan_tx      1246 drivers/tty/serial/imx.c 		dmaengine_terminate_sync(sport->dma_chan_tx);
dma_chan_tx      1247 drivers/tty/serial/imx.c 		dma_release_channel(sport->dma_chan_tx);
dma_chan_tx      1248 drivers/tty/serial/imx.c 		sport->dma_chan_tx = NULL;
dma_chan_tx      1285 drivers/tty/serial/imx.c 	sport->dma_chan_tx = dma_request_slave_channel(dev, "tx");
dma_chan_tx      1286 drivers/tty/serial/imx.c 	if (!sport->dma_chan_tx) {
dma_chan_tx      1296 drivers/tty/serial/imx.c 	ret = dmaengine_slave_config(sport->dma_chan_tx, &slave_config);
dma_chan_tx      1458 drivers/tty/serial/imx.c 		dmaengine_terminate_sync(sport->dma_chan_tx);
dma_chan_tx      1519 drivers/tty/serial/imx.c 	if (!sport->dma_chan_tx)
dma_chan_tx      1523 drivers/tty/serial/imx.c 	dmaengine_terminate_all(sport->dma_chan_tx);