[PATCH] usb: cdns3: include host-export,h for cdns3_host_init

2019-10-17 Thread Ben Dooks (Codethink)
The cdns3_host_init() function is declared in host-export.h but host.c does not include it. Add the include to have the declaration present (and remove the declaration of cdns3_host_exit which is now static). Fixes the following sparse warning: drivers/usb/cdns3/host.c:58:5: warning: symbol 'cdns

Re: [PATCH v2] usbip: tools: Fix read_usb_vudc_device() error path handling

2019-10-17 Thread shuah
On 10/16/19 11:26 PM, GwanYeong Kim wrote: On Wed, 16 Oct 2019 20:33:39 -0600 shuah wrote: On 10/16/19 8:25 PM, GwanYeong Kim wrote: cannot be less than 0 - fread() returns 0 on error. This isn't really accurate right. fread() doesn't always return 0 in error. It could return < number of e

[PATCH] usb: host: oxu210hp-hcd: fix __iomem annotations

2019-10-17 Thread Ben Dooks (Codethink)
There are a number of places in the driver where it fails to maintain __iomem on pointers used to access registers so fixup the warnings by adding these in the appropriate places. Examples of the sparse warnings fixed: drivers/usb/host/oxu210hp-hcd.c:686:9: warning: incorrect type in argument 2

[PATCH] usb: mtu3: fix missing include of mtu3_dr.h

2019-10-17 Thread Ben Dooks (Codethink)
The declarations of ssusb_gadget_{init,exit} are in the mtu3_dr.h file but the code does that implements them does not include this. Add the include to fix the following sparse warnigns: drivers/usb/mtu3/mtu3_core.c:825:5: warning: symbol 'ssusb_gadget_init' was not declared. Should it be static?

[USB EHCI DRIVER] [Regression] EHCI no longer working in 5.4 series kernel

2019-10-17 Thread Benedikt Schemmer
Hi all, I recently started compiling the 5.4. kernel starting with rc3 and noticed that both my keyboard and mouse aren't working when connected to the motherboards USB ports (they work fine when connected to an xhci extension card) and they work fine with the 5.3 series up to 5.3.6 Cheers, Ben

Re: [USB EHCI DRIVER] [Regression] EHCI no longer working in 5.4 series kernel

2019-10-17 Thread Alan Stern
On Thu, 17 Oct 2019, Benedikt Schemmer wrote: > Hi all, > > I recently started compiling the 5.4. kernel starting with rc3 and noticed > that both my keyboard and mouse aren't working > when connected to the motherboards USB ports (they work fine when connected > to an xhci extension card) and

MOTHERLESS CHILDREN IN YOUR CITY !!

2019-10-17 Thread Mr Ekrem Bayraktar
Dear Sir / Madam Since ever we left your country back to Canada , we have gotten Government approval and we have been busying planning for the less privilege Children projects. We are planning to release first batch of the funds $2,990,000.00 within 14 days for building an estate for motherl

RE: [PATCH] usb: cdns3: include host-export,h for cdns3_host_init

2019-10-17 Thread Pawel Laszczak
Hi >The cdns3_host_init() function is declared in host-export.h >but host.c does not include it. Add the include to have >the declaration present (and remove the declaration of >cdns3_host_exit which is now static). > >Fixes the following sparse warning: > >drivers/usb/cdns3/host.c:58:5: warning:

[PATCH v3] usbip: tools: Fix read_usb_vudc_device() error path handling

2019-10-17 Thread GwanYeong Kim
This isn't really accurate right. fread() doesn't always return 0 in error. It could return < number of elements and set errno. Signed-off-by: GwanYeong Kim --- tools/usb/usbip/libsrc/usbip_device_driver.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/usb/usbip/