Merge tag 'gfs2-for-5.5' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux...
[platform/kernel/linux-starfive.git] / drivers / spi / spi-s3c64xx.c
index 7b7151e..cf67ea6 100644 (file)
@@ -1154,15 +1154,13 @@ static int s3c64xx_spi_probe(struct platform_device *pdev)
 
        if (!is_polling(sdd)) {
                /* Acquire DMA channels */
-               sdd->rx_dma.ch = dma_request_slave_channel_reason(&pdev->dev,
-                                                                 "rx");
+               sdd->rx_dma.ch = dma_request_chan(&pdev->dev, "rx");
                if (IS_ERR(sdd->rx_dma.ch)) {
                        dev_err(&pdev->dev, "Failed to get RX DMA channel\n");
                        ret = PTR_ERR(sdd->rx_dma.ch);
                        goto err_disable_io_clk;
                }
-               sdd->tx_dma.ch = dma_request_slave_channel_reason(&pdev->dev,
-                                                                 "tx");
+               sdd->tx_dma.ch = dma_request_chan(&pdev->dev, "tx");
                if (IS_ERR(sdd->tx_dma.ch)) {
                        dev_err(&pdev->dev, "Failed to get TX DMA channel\n");
                        ret = PTR_ERR(sdd->tx_dma.ch);