Re: [PATCH] usb: host: ehci-tegra: Remove superfluous dev_err() message

From: Markus Elfring
Date: Wed Apr 08 2020 - 03:05:48 EST


> The platform_get_irq() can print error message,so remove the redundant
> dev_err() here.

I suggest to adjust the commit message.

* How do you think about to use the text âusb: host: ehci-tegra:
Remove an error message in tegra_ehci_probe()â as the commit subject?

* Would a wording like the following be nicer?

The function âplatform_get_irqâ can log an error already.
Thus remove a redundant message for the exception handling in the
calling function.


â
> +++ b/drivers/usb/host/ehci-tegra.c
> @@ -480,7 +480,6 @@ static int tegra_ehci_probe(struct platform_device *pdev)
>
> irq = platform_get_irq(pdev, 0);
> if (!irq) {
> - dev_err(&pdev->dev, "Failed to get IRQ\n");
> err = -ENODEV;
> goto cleanup_phy;

I find another implementation detail questionable here.
The software documentation is providing the following information
for the used programming interface.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/base/platform.c?id=f5e94d10e4c468357019e5c28d48499f677b284f#n221
https://elixir.bootlin.com/linux/v5.6.2/source/drivers/base/platform.c#L202

ââ
* Return: IRQ number on success, negative error number on failure.
ââ

Would you like to reconsider the shown condition check?

Regards,
Markus