Re: [PATCH] USB: host: ehci: Add error handling in ehci_mxc_drv_probe()

2020-05-13 Thread Greg KH
On Wed, May 13, 2020 at 08:55:59PM +0800, Tang Bin wrote: > Hi gregkh: > > On 2020/5/8 21:51, Alan Stern wrote: > > On Fri, 8 May 2020, Tang Bin wrote: > > > > > The function ehci_mxc_drv_probe() does not perform sufficient error > > > checking after executing platform_get_irq(), thus fix it. > >

Re: [PATCH] USB: host: ehci: Add error handling in ehci_mxc_drv_probe()

2020-05-13 Thread Tang Bin
Hi gregkh: On 2020/5/8 21:51, Alan Stern wrote: On Fri, 8 May 2020, Tang Bin wrote: The function ehci_mxc_drv_probe() does not perform sufficient error checking after executing platform_get_irq(), thus fix it. Aside from the "irq <= 0" issue, the Subject: line should say "ehci-mxc", not "ehci

Re: [PATCH] USB: host: ehci: Add error handling in ehci_mxc_drv_probe()

2020-05-08 Thread Sergei Shtylyov
On 05/08/2020 02:48 PM, Greg KH wrote: >> The function ehci_mxc_drv_probe() does not perform sufficient error >> checking after executing platform_get_irq(), thus fix it. >> >> Fixes: 7e8d5cd93fa ("USB: Add EHCI support for MX27 and MX31 based boards") >> Signed-off-by: Zhang Shengju >> Signed-of

Re: [PATCH] USB: host: ehci: Add error handling in ehci_mxc_drv_probe()

2020-05-08 Thread Alan Stern
On Fri, 8 May 2020, Tang Bin wrote: > The function ehci_mxc_drv_probe() does not perform sufficient error > checking after executing platform_get_irq(), thus fix it. Aside from the "irq <= 0" issue, the Subject: line should say "ehci-mxc", not "ehci". Alan Stern > Fixes: 7e8d5cd93fa ("USB: Add

Re: [PATCH] USB: host: ehci: Add error handling in ehci_mxc_drv_probe()

2020-05-08 Thread Greg KH
On Fri, May 08, 2020 at 07:44:53PM +0800, Tang Bin wrote: > The function ehci_mxc_drv_probe() does not perform sufficient error > checking after executing platform_get_irq(), thus fix it. > > Fixes: 7e8d5cd93fa ("USB: Add EHCI support for MX27 and MX31 based boards") > Signed-off-by: Zhang Shengju

[PATCH] USB: host: ehci: Add error handling in ehci_mxc_drv_probe()

2020-05-08 Thread Tang Bin
The function ehci_mxc_drv_probe() does not perform sufficient error checking after executing platform_get_irq(), thus fix it. Fixes: 7e8d5cd93fa ("USB: Add EHCI support for MX27 and MX31 based boards") Signed-off-by: Zhang Shengju Signed-off-by: Tang Bin --- drivers/usb/host/ehci-mxc.c | 2 ++