Skip to content

Commit c877b3d

Browse files
committed
Merge tag 'dmaengine-fix-5.1-rc3' of git://git.infradead.org/users/vkoul/slave-dma
Pull dmaengine fixes from Vinod Koul: - Revert "dmaengine: stm32-mdma: Add a check on read_u32_array" as that caused regression - Fix MAINTAINER file uniphier-mdmac.c file path * tag 'dmaengine-fix-5.1-rc3' of git://git.infradead.org/users/vkoul/slave-dma: MAINTAINERS: Fix uniphier-mdmac.c file path dmaengine: stm32-mdma: Revert "dmaengine: stm32-mdma: Add a check on read_u32_array"
2 parents b5c8314 + d498bc0 commit c877b3d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2356,7 +2356,7 @@ F: arch/arm/mm/cache-uniphier.c
23562356
F: arch/arm64/boot/dts/socionext/uniphier*
23572357
F: drivers/bus/uniphier-system-bus.c
23582358
F: drivers/clk/uniphier/
2359-
F: drivers/dmaengine/uniphier-mdmac.c
2359+
F: drivers/dma/uniphier-mdmac.c
23602360
F: drivers/gpio/gpio-uniphier.c
23612361
F: drivers/i2c/busses/i2c-uniphier*
23622362
F: drivers/irqchip/irq-uniphier-aidet.c

drivers/dma/stm32-mdma.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1578,11 +1578,9 @@ static int stm32_mdma_probe(struct platform_device *pdev)
15781578

15791579
dmadev->nr_channels = nr_channels;
15801580
dmadev->nr_requests = nr_requests;
1581-
ret = device_property_read_u32_array(&pdev->dev, "st,ahb-addr-masks",
1581+
device_property_read_u32_array(&pdev->dev, "st,ahb-addr-masks",
15821582
dmadev->ahb_addr_masks,
15831583
count);
1584-
if (ret)
1585-
return ret;
15861584
dmadev->nr_ahb_addr_masks = count;
15871585

15881586
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);

0 commit comments

Comments
 (0)