usb: gadget: udc: core: prepend udc_attach_driver with usb_
No functional changes, just adding a prefix which should have been there from the start. Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
@@ -411,7 +411,7 @@ err1:
|
||||
return ret;
|
||||
}
|
||||
|
||||
int udc_attach_driver(const char *name, struct usb_gadget_driver *driver)
|
||||
int usb_udc_attach_driver(const char *name, struct usb_gadget_driver *driver)
|
||||
{
|
||||
struct usb_udc *udc = NULL;
|
||||
int ret = -ENODEV;
|
||||
@@ -435,7 +435,7 @@ out:
|
||||
mutex_unlock(&udc_lock);
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(udc_attach_driver);
|
||||
EXPORT_SYMBOL_GPL(usb_udc_attach_driver);
|
||||
|
||||
int usb_gadget_probe_driver(struct usb_gadget_driver *driver)
|
||||
{
|
||||
|
Reference in New Issue
Block a user