Patch "usb gadget: don't save bind callback in struct usb_gadget_driver" in Greg's USB queue missed one conversion of usb_gadget_register_driver to usb_gadget_probe_driver, causing a build break when MUSB is built in gadget mode.
Fix this. Reported-by: Grazvydas Ignotas <[email protected]> Signed-off-by: Anand Gadiyar <[email protected]> Cc: Uwe Kleine-Koenig<[email protected]> Cc: Michal Nazarewicz <[email protected]> Cc: Felipe Balbi <[email protected]> Cc: Greg Kroah-Hartman <[email protected]> --- Greg, Since Uwe's original patch isn't yet in mainline, maybe you could fold this patch into the original. drivers/usb/musb/musb_gadget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/drivers/usb/musb/musb_gadget.c =================================================================== --- linux-2.6.orig/drivers/usb/musb/musb_gadget.c +++ linux-2.6/drivers/usb/musb/musb_gadget.c @@ -1786,7 +1786,7 @@ int usb_gadget_probe_driver(struct usb_g return retval; } -EXPORT_SYMBOL(usb_gadget_register_driver); +EXPORT_SYMBOL(usb_gadget_probe_driver); static void stop_activity(struct musb *musb, struct usb_gadget_driver *driver) { -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
