diff options
Diffstat (limited to 'drivers/dma/imx-sdma.c')
-rw-r--r-- | drivers/dma/imx-sdma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c index fd9ce77655bb..17a9d46bba15 100644 --- a/drivers/dma/imx-sdma.c +++ b/drivers/dma/imx-sdma.c | |||
@@ -873,11 +873,11 @@ static int sdma_alloc_chan_resources(struct dma_chan *chan) | |||
873 | 873 | ||
874 | sdmac->peripheral_type = data->peripheral_type; | 874 | sdmac->peripheral_type = data->peripheral_type; |
875 | sdmac->event_id0 = data->dma_request; | 875 | sdmac->event_id0 = data->dma_request; |
876 | ret = sdma_set_channel_priority(sdmac, prio); | 876 | ret = sdma_request_channel(sdmac); |
877 | if (ret) | 877 | if (ret) |
878 | return ret; | 878 | return ret; |
879 | 879 | ||
880 | ret = sdma_request_channel(sdmac); | 880 | ret = sdma_set_channel_priority(sdmac, prio); |
881 | if (ret) | 881 | if (ret) |
882 | return ret; | 882 | return ret; |
883 | 883 | ||