The patch titled usb: g_ether+pxa27x_udc compiled in kernel not working has been added to the -mm tree. Its filename is usb-g_etherpxa27x_udc-compiled-in-kernel-not-working.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: usb: g_ether+pxa27x_udc compiled in kernel not working From: Paul Sokolovsky <pmiscml@xxxxxxxxx> pxa27x_udc will not run g_ether code if it is compiled in. There is the second way to deal with it: remove "|| !driver->unbind" check from pxa27x_udc.c. Cc: David Brownell <david-b@xxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/gadget/ether.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/usb/gadget/ether.c~usb-g_etherpxa27x_udc-compiled-in-kernel-not-working drivers/usb/gadget/ether.c --- a/drivers/usb/gadget/ether.c~usb-g_etherpxa27x_udc-compiled-in-kernel-not-working +++ a/drivers/usb/gadget/ether.c @@ -2564,7 +2564,7 @@ static struct usb_gadget_driver eth_driv .function = (char *) driver_desc, .bind = eth_bind, - .unbind = __exit_p(eth_unbind), + .unbind = eth_unbind, .setup = eth_setup, .disconnect = eth_disconnect, _ Patches currently in -mm which might be from pmiscml@xxxxxxxxx are usb-g_etherpxa27x_udc-compiled-in-kernel-not-working.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