aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/k3dma.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/k3dma.c')
-rw-r--r--drivers/dma/k3dma.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/k3dma.c b/drivers/dma/k3dma.c
index ef7bc85d0b6d..a2c330f5f952 100644
--- a/drivers/dma/k3dma.c
+++ b/drivers/dma/k3dma.c
@@ -673,9 +673,9 @@ static int k3_dma_probe(struct platform_device *op)
673 if (!d) 673 if (!d)
674 return -ENOMEM; 674 return -ENOMEM;
675 675
676 d->base = devm_request_and_ioremap(&op->dev, iores); 676 d->base = devm_ioremap_resource(&op->dev, iores);
677 if (!d->base) 677 if (IS_ERR(d->base))
678 return -EADDRNOTAVAIL; 678 return PTR_ERR(d->base);
679 679
680 of_id = of_match_device(k3_pdma_dt_ids, &op->dev); 680 of_id = of_match_device(k3_pdma_dt_ids, &op->dev);
681 if (of_id) { 681 if (of_id) {