staging: mt7621-dma: Remove print statement on devm_kzalloc error

Remove print statement following error of devm_kzalloc. Issue found with
Coccinelle.

Signed-off-by: Nishka Dasgupta <nishka.dasgupta@yahoo.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Nishka Dasgupta 2019-04-03 01:52:17 +05:30 committed by Greg Kroah-Hartman
parent dc2971f20a
commit b5243475c1

View File

@ -665,7 +665,6 @@ static int mtk_hsdma_probe(struct platform_device *pdev)
hsdma = devm_kzalloc(&pdev->dev, sizeof(*hsdma), GFP_KERNEL);
if (!hsdma) {
dev_err(&pdev->dev, "alloc dma device failed\n");
return -EINVAL;
}