usb: gadget: udc: core: prepend udc_attach_driver with usb_
authorFelipe Balbi <balbi@ti.com>
Fri, 17 Oct 2014 23:57:06 +0000 (18:57 -0500)
committerFelipe Balbi <balbi@ti.com>
Mon, 3 Nov 2014 16:01:16 +0000 (10:01 -0600)
No functional changes, just adding a prefix
which should have been there from the start.

Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/configfs.c
drivers/usb/gadget/udc/udc-core.c
include/linux/usb/gadget.h

index d25f9f3..7564814 100644 (file)
@@ -271,7 +271,7 @@ static ssize_t gadget_dev_desc_UDC_store(struct gadget_info *gi,
                        ret = -EBUSY;
                        goto err;
                }
-               ret = udc_attach_driver(name, &gi->composite.gadget_driver);
+               ret = usb_udc_attach_driver(name, &gi->composite.gadget_driver);
                if (ret)
                        goto err;
                gi->udc_name = name;
index 135504b..e31d574 100644 (file)
@@ -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)
 {
index 70965fc..70ddb39 100644 (file)
@@ -924,7 +924,7 @@ extern int usb_add_gadget_udc_release(struct device *parent,
                struct usb_gadget *gadget, void (*release)(struct device *dev));
 extern int usb_add_gadget_udc(struct device *parent, struct usb_gadget *gadget);
 extern void usb_del_gadget_udc(struct usb_gadget *gadget);
-extern int udc_attach_driver(const char *name,
+extern int usb_udc_attach_driver(const char *name,
                struct usb_gadget_driver *driver);
 
 /*-------------------------------------------------------------------------*/