Hello. On 12/15/2011 05:57 PM, Felipe Balbi wrote:
A couple more fixes for 3.2 kernel have come up. Please pull for for-greg branch to receive both fixes. The combined diff is small enough to append at the end of this mail.
I have checked that it merged cleanly and result compiles fine.
The following changes since commit 02a551c9755b799579e0a093bcc99b80b4dc1453:
USB: option: Removing one bogus and adding some new Huawei combinations (2011-12-13 09:46:01 -0800)
are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git for-greg
Ajay Kumar Gupta (1): usb: musb: fix reset issue with full speed device
I never saw this patch on the list, and it's not archived either...
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c index 60ddba8..79cb0af 100644 --- a/drivers/usb/musb/musb_host.c +++ b/drivers/usb/musb/musb_host.c @@ -774,6 +774,10 @@ static void musb_ep_program(struct musb *musb, u8 epnum, if (musb->double_buffer_not_ok) musb_writew(epio, MUSB_TXMAXP, hw_ep->max_packet_sz_tx); + else if (can_bulk_split(musb, qh->type)) + musb_writew(epio, MUSB_TXMAXP, packet_sz + | ((hw_ep->max_packet_sz_tx / + packet_sz) - 1)<< 11);
Shouldn't the same be done for the gadget side? WBR, Sergei -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html