diff options
-rw-r--r-- | drivers/dma/k3dma.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/dma/k3dma.c b/drivers/dma/k3dma.c index 49be7f687c4c..a4ff7e9e68be 100644 --- a/drivers/dma/k3dma.c +++ b/drivers/dma/k3dma.c | |||
@@ -601,7 +601,7 @@ static int k3_dma_terminate_all(struct dma_chan *chan) | |||
601 | return 0; | 601 | return 0; |
602 | } | 602 | } |
603 | 603 | ||
604 | static int k3_dma_pause(struct dma_chan *chan) | 604 | static int k3_dma_transfer_pause(struct dma_chan *chan) |
605 | { | 605 | { |
606 | struct k3_dma_chan *c = to_k3_chan(chan); | 606 | struct k3_dma_chan *c = to_k3_chan(chan); |
607 | struct k3_dma_dev *d = to_k3_dma(chan->device); | 607 | struct k3_dma_dev *d = to_k3_dma(chan->device); |
@@ -622,7 +622,7 @@ static int k3_dma_pause(struct dma_chan *chan) | |||
622 | return 0; | 622 | return 0; |
623 | } | 623 | } |
624 | 624 | ||
625 | static int k3_dma_resume(struct dma_chan *chan) | 625 | static int k3_dma_transfer_resume(struct dma_chan *chan) |
626 | { | 626 | { |
627 | struct k3_dma_chan *c = to_k3_chan(chan); | 627 | struct k3_dma_chan *c = to_k3_chan(chan); |
628 | struct k3_dma_dev *d = to_k3_dma(chan->device); | 628 | struct k3_dma_dev *d = to_k3_dma(chan->device); |
@@ -735,8 +735,8 @@ static int k3_dma_probe(struct platform_device *op) | |||
735 | d->slave.device_prep_slave_sg = k3_dma_prep_slave_sg; | 735 | d->slave.device_prep_slave_sg = k3_dma_prep_slave_sg; |
736 | d->slave.device_issue_pending = k3_dma_issue_pending; | 736 | d->slave.device_issue_pending = k3_dma_issue_pending; |
737 | d->slave.device_config = k3_dma_config; | 737 | d->slave.device_config = k3_dma_config; |
738 | d->slave.device_pause = k3_dma_pause; | 738 | d->slave.device_pause = k3_dma_transfer_pause; |
739 | d->slave.device_resume = k3_dma_resume; | 739 | d->slave.device_resume = k3_dma_transfer_resume; |
740 | d->slave.device_terminate_all = k3_dma_terminate_all; | 740 | d->slave.device_terminate_all = k3_dma_terminate_all; |
741 | d->slave.copy_align = DMA_ALIGN; | 741 | d->slave.copy_align = DMA_ALIGN; |
742 | 742 | ||