]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
spi: pl022: Use dma_request_chan() directly for channel request
authorPeter Ujfalusi <peter.ujfalusi@ti.com>
Wed, 13 Nov 2019 09:42:52 +0000 (11:42 +0200)
committerMark Brown <broonie@kernel.org>
Fri, 15 Nov 2019 12:14:19 +0000 (12:14 +0000)
dma_request_slave_channel_reason() is:
#define dma_request_slave_channel_reason(dev, name) \
dma_request_chan(dev, name)

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20191113094256.1108-6-peter.ujfalusi@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-pl022.c

index 3024c30e7f2ea327d7c494ab75cf3018904ba1e7..66028ebbc336d6b75542b7b07a590ce0bb5c68bf 100644 (file)
@@ -1158,7 +1158,7 @@ static int pl022_dma_autoprobe(struct pl022 *pl022)
        int err;
 
        /* automatically configure DMA channels from platform, normally using DT */
-       chan = dma_request_slave_channel_reason(dev, "rx");
+       chan = dma_request_chan(dev, "rx");
        if (IS_ERR(chan)) {
                err = PTR_ERR(chan);
                goto err_no_rxchan;
@@ -1166,7 +1166,7 @@ static int pl022_dma_autoprobe(struct pl022 *pl022)
 
        pl022->dma_rx_channel = chan;
 
-       chan = dma_request_slave_channel_reason(dev, "tx");
+       chan = dma_request_chan(dev, "tx");
        if (IS_ERR(chan)) {
                err = PTR_ERR(chan);
                goto err_no_txchan;