Re: Mouse works with eHCI, fails with xHCI - can't set config #1, error -110

2015-04-10 Thread Alistair Grant
Hi Alan, On Fri, Apr 10, 2015 at 7:23 PM, Alan Stern st...@rowland.harvard.edu wrote: On Fri, 10 Apr 2015, Alistair Grant wrote: On Fri, Apr 10, 2015 at 5:29 PM, Alan Stern st...@rowland.harvard.edu wrote: On Fri, 10 Apr 2015, Alistair Grant wrote: ... i.e. the mouse works reliably in

Re: keyboard/trackpad combo unusable on MacBookPro4,1 with bcm5974.ko

2015-04-10 Thread Alan Stern
On Fri, 10 Apr 2015, Christian Böhme wrote: Alan Stern stern@... writes: Given that hid_mouse_ignore_list[] actually contains the proper (USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO) pair as far as I can make out and assuming a properly working compiler,

[PATCH] usb: phy/isp1301: work around tps65010 dependency

2015-04-10 Thread Arnd Bergmann
The isp1301-omap driver contains special hooks for the TPS65010 power management controller. It provides its own 'tps65010_set_vbus_draw' wrapper in case that driver is not enabled through Kconfig, but fails to handle the case where isp1301-omap is built-in but TPS65010 is a loadable module, which

[PATCH] usb: gadget: remove incorrect __init/__exit annotations

2015-04-10 Thread Arnd Bergmann
A recent change introduced a link error for the composite printer gadget driver: `printer_unbind' referenced in section `.ref.data' of drivers/built-in.o: defined in discarded section `.exit.text' of drivers/built-in.o Evidently the unbind function should not be marked __exit here, because it

[PATCH 2/2] drivers/usb/core: devio.c: Removed various warnings and errors generated by checkpatch.pl

2015-04-10 Thread Chase Metzger
Removed warnings and erros from checkpatch.pl that go against the coding style. Lines 29 and 103: removed unwanted spaces. Lines 1040 and 1591: changed dev_printk(KERN_DEBUG, ...) to dev_dbg(dev-dev). Lines 1942: changed an else switch to else { switch (...) {...} }. (Makes more sense(to me)).