The patch titled usb gadget: update inode.c to support full speed only udc has been removed from the -mm tree. Its filename is usb-gadget-update-inodec-to-support-full-speed-only.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: usb gadget: update inode.c to support full speed only udc From: Milan Svoboda <msvoboda@xxxxxxxxxxxxxxx> Add support for full speed only udc controllers. Signed-off-by: Milan Svoboda <msvoboda@xxxxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Russell King <rmk@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/gadget/inode.c | 4 ++++ 1 files changed, 4 insertions(+) diff -puN drivers/usb/gadget/inode.c~usb-gadget-update-inodec-to-support-full-speed-only drivers/usb/gadget/inode.c --- 25/drivers/usb/gadget/inode.c~usb-gadget-update-inodec-to-support-full-speed-only Thu May 25 11:58:28 2006 +++ 25-akpm/drivers/usb/gadget/inode.c Thu May 25 11:58:28 2006 @@ -1757,7 +1757,11 @@ static int gadgetfs_probe (struct usb_ga } static struct usb_gadget_driver probe_driver = { +#ifdef HIGHSPEED .speed = USB_SPEED_HIGH, +#else + .speed = USB_SPEED_FULL, +#endif .bind = gadgetfs_probe, .unbind = gadgetfs_nop, .setup = (void *)gadgetfs_nop, _ Patches currently in -mm which might be from msvoboda@xxxxxxxxxxxxxxx are usb-gadget-update-inodec-to-support-full-speed-only.patch usb-gadget-update-pxa2xx_udcc-and-arch-dependent-files.patch usb-gadget-update-pxa2xx_udcc-driver-to-fully-support.patch usb-gadget-dont-build-small-version-if-usbgadgetfs.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html