Commit 275b6bd5 authored by Giovanni Gherdovich's avatar Giovanni Gherdovich Committed by Greg Kroah-Hartman

staging: ralink-gdma: Check return code of device_reset

The device_reset() function is marked as "__must_check", thus the static
analysis tool "sparse" complains that in ralink-gdma its return value is
ignored. Log a warning in case it returns an error.
Signed-off-by: default avatarGiovanni Gherdovich <bobdc9664@seznam.cz>
Link: https://lore.kernel.org/r/20210306141322.7516-1-bobdc9664@seznam.czSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 60df0e7a
......@@ -833,7 +833,9 @@ static int gdma_dma_probe(struct platform_device *pdev)
return ret;
}
device_reset(&pdev->dev);
ret = device_reset(&pdev->dev);
if (ret)
dev_err(&pdev->dev, "failed to reset: %d\n", ret);
dd = &dma_dev->ddev;
dma_cap_set(DMA_MEMCPY, dd->cap_mask);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment