On Mon, 4 Jun 2007, Marc St-Jean wrote: > [PATCH 11/12] drivers: PMC MSP71xx USB driver > > Patch to add an USB driver for the PMC-Sierra MSP71xx devices. > > Patches 1 through 10 were posted to linux-mips@xxxxxxxxxxxxxx as well > as other sub-system lists/maintainers as appropriate. This patch has > some dependencies on the first few patches in the set. If you would > like to receive these or the entire set, please email me. My personal impressions: This does far too much to be a single patch. It needs to be broken up. The change to hub.c looks more complicated than necessary. You ought to be able to share more of the code. Turning off power to the overcurrent port would probably be okay for any hub. The changes to file_storage.c and other gadget drivers look completely unnecessary. You're apparently trying to disallow 0-length transfers on endpoint 0. For one thing, that's liable to break some protocols. For another, it would be better to make the test at one place, in your controller driver, instead of spread out among multiple gadget drivers. Alan Stern