Skip to content

Commit

Permalink
dmaengine: stm32-mdma: Add a check on read_u32_array
Browse files Browse the repository at this point in the history
In stm32_mdma_probe, after reading the property "st,ahb-addr-masks", the
second call is not checked for failure. This time of check to time of use
case of "count" error is sent upstream.

Signed-off-by: Aditya Pakki <pakki001@umn.edu>
Acked-by: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
  • Loading branch information
Aditya Pakki authored and Vinod Koul committed Jan 7, 2019
1 parent bfeffd1 commit 906b40b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/dma/stm32-mdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -1579,9 +1579,11 @@ static int stm32_mdma_probe(struct platform_device *pdev)

dmadev->nr_channels = nr_channels;
dmadev->nr_requests = nr_requests;
device_property_read_u32_array(&pdev->dev, "st,ahb-addr-masks",
ret = device_property_read_u32_array(&pdev->dev, "st,ahb-addr-masks",
dmadev->ahb_addr_masks,
count);
if (ret)
return ret;
dmadev->nr_ahb_addr_masks = count;

res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Expand Down

0 comments on commit 906b40b

Please sign in to comment.