diff options
Diffstat (limited to 'drivers/dma/amba-pl08x.c')
-rw-r--r-- | drivers/dma/amba-pl08x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/amba-pl08x.c b/drivers/dma/amba-pl08x.c index 5821125f0458..cc08c8c01a9e 100644 --- a/drivers/dma/amba-pl08x.c +++ b/drivers/dma/amba-pl08x.c | |||
@@ -874,7 +874,7 @@ static int prep_phy_channel(struct pl08x_dma_chan *plchan, | |||
874 | * Can the platform allow us to use this channel? | 874 | * Can the platform allow us to use this channel? |
875 | */ | 875 | */ |
876 | if (plchan->slave && pl08x->pd->get_signal) { | 876 | if (plchan->slave && pl08x->pd->get_signal) { |
877 | ret = pl08x->pd->get_signal(plchan); | 877 | ret = pl08x->pd->get_signal(plchan->cd); |
878 | if (ret < 0) { | 878 | if (ret < 0) { |
879 | dev_dbg(&pl08x->adev->dev, | 879 | dev_dbg(&pl08x->adev->dev, |
880 | "unable to use physical channel %d for transfer on %s due to platform restrictions\n", | 880 | "unable to use physical channel %d for transfer on %s due to platform restrictions\n", |
@@ -909,7 +909,7 @@ static void release_phy_channel(struct pl08x_dma_chan *plchan) | |||
909 | struct pl08x_driver_data *pl08x = plchan->host; | 909 | struct pl08x_driver_data *pl08x = plchan->host; |
910 | 910 | ||
911 | if ((plchan->phychan->signal >= 0) && pl08x->pd->put_signal) { | 911 | if ((plchan->phychan->signal >= 0) && pl08x->pd->put_signal) { |
912 | pl08x->pd->put_signal(plchan); | 912 | pl08x->pd->put_signal(plchan->cd, plchan->phychan->signal); |
913 | plchan->phychan->signal = -1; | 913 | plchan->phychan->signal = -1; |
914 | } | 914 | } |
915 | pl08x_put_phy_channel(pl08x, plchan->phychan); | 915 | pl08x_put_phy_channel(pl08x, plchan->phychan); |