Commit b5243475 authored by Nishka Dasgupta's avatar Nishka Dasgupta Committed by Greg Kroah-Hartman
Browse files

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: default avatarNishka Dasgupta <nishka.dasgupta@yahoo.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dc2971f2
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;
	}