All of lore.kernel.org
 help / color / mirror / Atom feed
* usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
@ 2020-04-08 14:15 ` Markus Elfring
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Elfring @ 2020-04-08 14:15 UTC (permalink / raw)
  To: linux-usb, linuxppc-dev
  Cc: LKML, kernel-janitors, Felipe Balbi, Greg Kroah-Hartman, Li Yang,
	Tang Bin

Hello,

I have taken another look at the implementation of the function “fsl_udc_probe”.
A software analysis approach points the following source code out for
further development considerations.
https://elixir.bootlin.com/linux/v5.6.2/source/drivers/usb/gadget/udc/fsl_udc_core.c#L2443
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/usb/gadget/udc/fsl_udc_core.c?id=f5e94d10e4c468357019e5c28d48499f677b284f#n2442

 	udc_controller->irq = platform_get_irq(pdev, 0);
 	if (!udc_controller->irq) {
 		ret = -ENODEV;
 		goto err_iounmap;
 	}


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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
@ 2020-04-08 14:15 ` Markus Elfring
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Elfring @ 2020-04-08 14:15 UTC (permalink / raw)
  To: linux-usb, linuxppc-dev
  Cc: LKML, kernel-janitors, Felipe Balbi, Greg Kroah-Hartman, Li Yang,
	Tang Bin

Hello,

I have taken another look at the implementation of the function “fsl_udc_probe”.
A software analysis approach points the following source code out for
further development considerations.
https://elixir.bootlin.com/linux/v5.6.2/source/drivers/usb/gadget/udc/fsl_udc_core.c#L2443
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/usb/gadget/udc/fsl_udc_core.c?id=f5e94d10e4c468357019e5c28d48499f677b284f#n2442

 	udc_controller->irq = platform_get_irq(pdev, 0);
 	if (!udc_controller->irq) {
 		ret = -ENODEV;
 		goto err_iounmap;
 	}


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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
@ 2020-04-08 14:15 ` Markus Elfring
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Elfring @ 2020-04-08 14:15 UTC (permalink / raw)
  To: linux-usb, linuxppc-dev
  Cc: Felipe Balbi, Tang Bin, Greg Kroah-Hartman, kernel-janitors,
	LKML, Li Yang

Hello,

I have taken another look at the implementation of the function “fsl_udc_probe”.
A software analysis approach points the following source code out for
further development considerations.
https://elixir.bootlin.com/linux/v5.6.2/source/drivers/usb/gadget/udc/fsl_udc_core.c#L2443
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/usb/gadget/udc/fsl_udc_core.c?id=f5e94d10e4c468357019e5c28d48499f677b284f#n2442

 	udc_controller->irq = platform_get_irq(pdev, 0);
 	if (!udc_controller->irq) {
 		ret = -ENODEV;
 		goto err_iounmap;
 	}


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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
  2020-04-08 14:15 ` Markus Elfring
  (?)
@ 2020-04-08 22:47   ` Li Yang
  -1 siblings, 0 replies; 10+ messages in thread
From: Li Yang @ 2020-04-08 22:47 UTC (permalink / raw)
  To: Markus Elfring
  Cc: linux-usb, linuxppc-dev, Felipe Balbi, Tang Bin,
	Greg Kroah-Hartman, kernel-janitors, LKML

On Wed, Apr 8, 2020 at 9:19 AM Markus Elfring <Markus.Elfring@web.de> wrote:
>
> Hello,
>
> I have taken another look at the implementation of the function “fsl_udc_probe”.
> A software analysis approach points the following source code out for
> further development considerations.
> https://elixir.bootlin.com/linux/v5.6.2/source/drivers/usb/gadget/udc/fsl_udc_core.c#L2443
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/usb/gadget/udc/fsl_udc_core.c?id=f5e94d10e4c468357019e5c28d48499f677b284f#n2442
>
>         udc_controller->irq = platform_get_irq(pdev, 0);
>         if (!udc_controller->irq) {
>                 ret = -ENODEV;
>                 goto err_iounmap;
>         }
>
>
> 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?

Thanks for the finding.  This is truly a software issue that need to
be fixed.  Would you submit a patch for it or you want us to fix it?

Regards,
Leo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
@ 2020-04-08 22:47   ` Li Yang
  0 siblings, 0 replies; 10+ messages in thread
From: Li Yang @ 2020-04-08 22:47 UTC (permalink / raw)
  To: Markus Elfring
  Cc: linux-usb, linuxppc-dev, Felipe Balbi, Tang Bin,
	Greg Kroah-Hartman, kernel-janitors, LKML

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="windows-1254", Size: 1355 bytes --]

On Wed, Apr 8, 2020 at 9:19 AM Markus Elfring <Markus.Elfring@web.de> wrote:
>
> Hello,
>
> I have taken another look at the implementation of the function “fsl_udc_probe”.
> A software analysis approach points the following source code out for
> further development considerations.
> https://elixir.bootlin.com/linux/v5.6.2/source/drivers/usb/gadget/udc/fsl_udc_core.c#L2443
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/usb/gadget/udc/fsl_udc_core.c?idõe94d10e4c468357019e5c28d48499f677b284f#n2442
>
>         udc_controller->irq = platform_get_irq(pdev, 0);
>         if (!udc_controller->irq) {
>                 ret = -ENODEV;
>                 goto err_iounmap;
>         }
>
>
> 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õe94d10e4c468357019e5c28d48499f677b284f#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?

Thanks for the finding.  This is truly a software issue that need to
be fixed.  Would you submit a patch for it or you want us to fix it?

Regards,
Leo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
@ 2020-04-08 22:47   ` Li Yang
  0 siblings, 0 replies; 10+ messages in thread
From: Li Yang @ 2020-04-08 22:47 UTC (permalink / raw)
  To: Markus Elfring
  Cc: Felipe Balbi, Tang Bin, Greg Kroah-Hartman, linux-usb,
	kernel-janitors, LKML, linuxppc-dev

On Wed, Apr 8, 2020 at 9:19 AM Markus Elfring <Markus.Elfring@web.de> wrote:
>
> Hello,
>
> I have taken another look at the implementation of the function “fsl_udc_probe”.
> A software analysis approach points the following source code out for
> further development considerations.
> https://elixir.bootlin.com/linux/v5.6.2/source/drivers/usb/gadget/udc/fsl_udc_core.c#L2443
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/usb/gadget/udc/fsl_udc_core.c?id=f5e94d10e4c468357019e5c28d48499f677b284f#n2442
>
>         udc_controller->irq = platform_get_irq(pdev, 0);
>         if (!udc_controller->irq) {
>                 ret = -ENODEV;
>                 goto err_iounmap;
>         }
>
>
> 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?

Thanks for the finding.  This is truly a software issue that need to
be fixed.  Would you submit a patch for it or you want us to fix it?

Regards,
Leo

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
  2020-04-08 22:47   ` Li Yang
  (?)
@ 2020-04-09  6:28     ` Markus Elfring
  -1 siblings, 0 replies; 10+ messages in thread
From: Markus Elfring @ 2020-04-09  6:28 UTC (permalink / raw)
  To: Li Yang, linux-usb, linuxppc-dev
  Cc: Felipe Balbi, Greg Kroah-Hartman, Tang Bin, kernel-janitors, LKML

>> Would you like to reconsider the shown condition check?
>
> Thanks for the finding.  This is truly a software issue that need to
> be fixed.

I was unsure if I noticed another programming mistake.


> Would you submit a patch for it

Do other contributors know the affected software module better than me?


> or you want us to fix it?

I would find it nice if another developer will convert the bug report
into corresponding improvements.

Regards,
Markus

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
@ 2020-04-09  6:28     ` Markus Elfring
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Elfring @ 2020-04-09  6:28 UTC (permalink / raw)
  To: Li Yang, linux-usb, linuxppc-dev
  Cc: Felipe Balbi, Greg Kroah-Hartman, Tang Bin, kernel-janitors, LKML

>> Would you like to reconsider the shown condition check?
>
> Thanks for the finding.  This is truly a software issue that need to
> be fixed.

I was unsure if I noticed another programming mistake.


> Would you submit a patch for it

Do other contributors know the affected software module better than me?


> or you want us to fix it?

I would find it nice if another developer will convert the bug report
into corresponding improvements.

Regards,
Markus

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
@ 2020-04-09  6:28     ` Markus Elfring
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Elfring @ 2020-04-09  6:28 UTC (permalink / raw)
  To: Li Yang, linux-usb, linuxppc-dev
  Cc: Felipe Balbi, Tang Bin, kernel-janitors, LKML, Greg Kroah-Hartman

>> Would you like to reconsider the shown condition check?
>
> Thanks for the finding.  This is truly a software issue that need to
> be fixed.

I was unsure if I noticed another programming mistake.


> Would you submit a patch for it

Do other contributors know the affected software module better than me?


> or you want us to fix it?

I would find it nice if another developer will convert the bug report
into corresponding improvements.

Regards,
Markus

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe()
@ 2020-04-09  6:51 Tang Bin
  0 siblings, 0 replies; 10+ messages in thread
From: Tang Bin @ 2020-04-09  6:51 UTC (permalink / raw)
  To: markus.elfring, Li Yang
  Cc: balbi, tangbin, gregkh, kernel-janitors, linux-kernel, linuxppc-dev

[-- Attachment #1: Type: text/plain, Size: 334 bytes --]

On Thu,Apr 9,2020 08:28:28 Markus Elfring <Markus.Elfring@web.de> wrote:


> I was unsure if I noticed another programming mistake.

> Do other contributors know the affected software module better than me?

I discovered this problem fews days ago, and doing experiments on the hardware to test my idea.

Thanks
Tang Bin


[-- Attachment #2: Type: text/html, Size: 3817 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2020-04-09  7:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-08 14:15 usb: gadget: fsl_udc_core: Checking for a failed platform_get_irq() call in fsl_udc_probe() Markus Elfring
2020-04-08 14:15 ` Markus Elfring
2020-04-08 14:15 ` Markus Elfring
2020-04-08 22:47 ` Li Yang
2020-04-08 22:47   ` Li Yang
2020-04-08 22:47   ` Li Yang
2020-04-09  6:28   ` Markus Elfring
2020-04-09  6:28     ` Markus Elfring
2020-04-09  6:28     ` Markus Elfring
2020-04-09  6:51 Tang Bin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.