Commit 4298475d authored by Chen Ni's avatar Chen Ni Committed by Greg Kroah-Hartman
Browse files

usb: dwc3: google: Remove redundant dev_err()



The platform_get_irq_byname() function already prints an error message
internally upon failure using dev_err_probe(). Therefore, the explicit
dev_err() is redundant and results in duplicate error logs.

Remove the redundant dev_err() call to clean up the error path.

Signed-off-by: default avatarChen Ni <nichen@iscas.ac.cn>
Acked-by: default avatarThinh Nguyen <Thinh.Nguyen@synopsys.com>
Link: https://patch.msgid.link/20260115023800.4142416-1-nichen@iscas.ac.cn


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ef548189
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -228,10 +228,8 @@ static int dwc3_google_request_irq(struct dwc3_google *google, struct platform_d
	int irq;

	irq = platform_get_irq_byname(pdev, irq_name);
	if (irq < 0) {
		dev_err(google->dev, "invalid irq name %s\n", irq_name);
	if (irq < 0)
		return irq;
	}

	irq_set_status_flags(irq, IRQ_NOAUTOEN);
	ret = devm_request_threaded_irq(google->dev, irq, NULL,