[GIT PULL] USB driver fixes for 4.5-rc3

2016-02-06 Thread Greg KH
The following changes since commit 36f90b0a2ddd60823fe193a85e60ff1906c2a9b3: Linux 4.5-rc2 (2016-01-31 18:12:16 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git/ tags/usb-4.5-rc3 for you to fetch changes up to 89140fdaf11aec81e93d55

Re: [PATCH 1/1] Drivers: USB: DA8xx MUSB: added DT support

2016-02-06 Thread Sergei Shtylyov
Hello. [Changed Felipe's address to the kernel.org one, so thta he can read this too. :-)] On 02/05/2016 08:34 PM, Petr Kulhavy wrote: TI DA8xx MUSB driver equipped with DeviceTree support. Tested with AM1808 board and USB2.0 (OTG) in host mode. Have you notices "depends on BROKEN" i

Re: [PATCH 1/1] Drivers: USB: DA8xx MUSB: added DT support

2016-02-06 Thread Sergei Shtylyov
Hello. On 02/06/2016 02:55 AM, Petr Kulhavy wrote: One more thing: 3 files changed, 227 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/usb/da8xx-usb.txt diff --git a/Documentation/devicetree/bindings/usb/da8xx-usb.txt b/Documentation/devicetree/binding

Re: Writing to USB3 memory stick with 4.4 is 52 times slower than Win7 inside virtualbox

2016-02-06 Thread Oliver Neukum
On Fri, 2016-02-05 at 16:11 -0500, Alan Stern wrote: > On Fri, 5 Feb 2016, Marc MERLIN wrote: > > When a windows copy is finished, it's pretty much on flash (maybe with a > > second delay) > > On linux, it is if I accept a speed that 50x slower, or it's not and > > data is lost if I pull my usb de

NEC uPD720200 xHCI Controller dies when Runtime PM enabled

2016-02-06 Thread Mike Murdoch
Bug ID: 111251 Hello, I have a NEC uPD720200 USB3.0 controller in a Thinkpad W520 laptop on kernel 4.4.1-gentoo. 0e:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 04) (prog-if 30 [XHCI]) Subsystem: Lenovo uPD720200 USB 3.0 Host Controller Flags: bus master, f

[PATCH] usb: chipidea: fix return value check in ci_hdrc_pci_probe()

2016-02-06 Thread weiyj_lk
From: Wei Yongjun In case of error, the function usb_phy_generic_register() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Signed-off-by: Wei Yongjun --- drivers/usb/chipidea/ci_hdrc_pci.c | 4 ++-- 1 file changed, 2 insertio