Commit e2bc5533 authored by Yang Li's avatar Yang Li Committed by Helge Deller
Browse files

video: fbdev: pxa3xx-gcu: Remove unnecessary print function dev_err()



The print function dev_err() is redundant because platform_get_irq()
already prints an error.

Eliminate the follow coccicheck warning:
./drivers/video/fbdev/pxa3xx-gcu.c:615:2-9: line 615 is redundant
because platform_get_irq() already prints an error

Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarYang Li <yang.lee@linux.alibaba.com>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent 863f9461
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -611,10 +611,8 @@ static int pxa3xx_gcu_probe(struct platform_device *pdev)

	/* request the IRQ */
	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
		dev_err(dev, "no IRQ defined: %d\n", irq);
	if (irq < 0)
		return irq;
	}

	ret = devm_request_irq(dev, irq, pxa3xx_gcu_handle_irq,
			       0, DRV_NAME, priv);