media: sunxi: sun8i-rotate.c: remove useless error message

This fixes the following coccinelle report:

drivers/media/platform/sunxi/sun8i-rotate/sun8i_rotate.c:751:2-9:
line 751 is redundant because platform_get_irq() already prints an error

By removing the useless call to dev_err()

Found using - Coccinelle (http://coccinelle.lip6.fr)

Signed-off-by: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Daniel W. S. Almeida 2020-08-07 10:35:28 +02:00 committed by Mauro Carvalho Chehab
parent 45f13a57d8
commit 97c6a99bd5
1 changed files with 1 additions and 4 deletions

View File

@ -747,11 +747,8 @@ static int rotate_probe(struct platform_device *pdev)
dev->dev = &pdev->dev; dev->dev = &pdev->dev;
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
if (irq <= 0) { if (irq <= 0)
dev_err(dev->dev, "Failed to get IRQ\n");
return irq; return irq;
}
ret = devm_request_irq(dev->dev, irq, rotate_irq, ret = devm_request_irq(dev->dev, irq, rotate_irq,
0, dev_name(dev->dev), dev); 0, dev_name(dev->dev), dev);