Hi Greg, Today's linux-next build (powerpc allyesconfig) failed like this: drivers/usb/gadget/f_ecm.c:737: error: __ksymtab_ecm_bind causes a section type conflict You really shouldn't EXPORT static functions. I applied the patch below. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --git a/drivers/usb/gadget/f_ecm.c b/drivers/usb/gadget/f_ecm.c index ff85c9d..6d0a88c 100644 --- a/drivers/usb/gadget/f_ecm.c +++ b/drivers/usb/gadget/f_ecm.c @@ -599,7 +599,7 @@ static void ecm_close(struct gether *geth) /* ethernet function driver setup/binding */ -static int __init +int __init ecm_bind(struct usb_configuration *c, struct usb_function *f) { struct usb_composite_dev *cdev = c->cdev; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html