[PATCH 1/2] usb drivers: use BUG_ON() instead of if () BUG

2015-05-19 Thread Mauro Carvalho Chehab
Some USB drivers have a logic at the VB buffer handling like: if (in_interrupt()) BUG(); Use, instead: BUG_ON(in_interrupt()); Btw, this logic looks weird on my eyes. We should convert them to use VB2, in order to avoid those crappy things. Signed-off-by: Mauro

[PATCH v2 0/6] Marvell PXA1928 USB support

2015-05-19 Thread Rob Herring
This series adds USB PHYs and EHCI host drivers for the Marvell PXA1928 SOC. The OTG block is based on ChipIdea and works with the chipidea,usb2 compatible driver as is just by adding the PHY driver. Yay! After more testing it turns out the EHCI host is also based on ChipIdea too. So this

Re: [RESEND][PATCH] Bluetooth: Make request workqueue freezable

2015-05-19 Thread Marcel Holtmann
Hi Alan, I am not convinced. Now we are hacking the Bluetooth core layer (which has nothing to do with the drivers suspend/resume or probe) to do something different so that we do not see this warning. I can not do anything about the platform in question choosing a unplug/replug for

Re: Disk access keeps causing serial/USB failures?

2015-05-19 Thread Marc MERLIN
On Tue, May 19, 2015 at 01:21:30PM -0400, Alan Stern wrote: This strongly suggests that the problem lies in the hubs (or in one of them). Something caused a hub to disconnect, and when that happened all of the serial ports downstream from that hub went along for the ride. Hi Alan, thanks