USB: gadget: f_mass_storage: fsg_add() renamed to fsg_bind_config()
authorMichal Nazarewicz <m.nazarewicz@samsung.com>
Wed, 16 Jun 2010 10:07:57 +0000 (12:07 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 10 Aug 2010 21:35:36 +0000 (14:35 -0700)
Mass Storage Function had a bit unique name for function
used to add it to USB configuration.  Renamed as to match
naming convention of other functions.

Signed-off-by: Michal Nazarewicz <m.nazarewicz@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/gadget/f_mass_storage.c
drivers/usb/gadget/mass_storage.c
drivers/usb/gadget/multi.c

index 4ce899c9b1653b2cfd747e65a17b919d0adeae2c..8a95ebc7e3d3e88230e39448bef900b3afea8bf4 100644 (file)
@@ -2990,9 +2990,9 @@ static struct usb_gadget_strings *fsg_strings_array[] = {
        NULL,
 };
 
-static int fsg_add(struct usb_composite_dev *cdev,
-                  struct usb_configuration *c,
-                  struct fsg_common *common)
+static int fsg_bind_config(struct usb_composite_dev *cdev,
+                          struct usb_configuration *c,
+                          struct fsg_common *common)
 {
        struct fsg_dev *fsg;
        int rc;
@@ -3024,6 +3024,13 @@ static int fsg_add(struct usb_composite_dev *cdev,
        return rc;
 }
 
+static inline int __deprecated __maybe_unused
+fsg_add(struct usb_composite_dev *cdev,
+       struct usb_configuration *c,
+       struct fsg_common *common)
+{
+       return fsg_bind_config(cdev, c, common);
+}
 
 
 /************************* Module parameters *************************/
index e68c00e0876596c6fa47bd470e6ca1fb74b6a36a..2b11e20798234b38ac0e61530744c1d15890d3ae 100644 (file)
@@ -161,7 +161,7 @@ static int __init msg_do_config(struct usb_configuration *c)
        if (IS_ERR(retp))
                return PTR_ERR(retp);
 
-       ret = fsg_add(c->cdev, c, &common);
+       ret = fsg_bind_config(c->cdev, c, &common);
        fsg_common_put(&common);
        return ret;
 }
index a930d7fd7e7a5425fff7bd6c77044acaf0dc2355..d3d31403302263ec49b301d92050a9d41ac3fd43 100644 (file)
@@ -172,7 +172,7 @@ static int __init rndis_do_config(struct usb_configuration *c)
        if (ret < 0)
                return ret;
 
-       ret = fsg_add(c->cdev, c, fsg_common);
+       ret = fsg_bind_config(c->cdev, c, fsg_common);
        if (ret < 0)
                return ret;
 
@@ -208,7 +208,7 @@ static int __init cdc_do_config(struct usb_configuration *c)
        if (ret < 0)
                return ret;
 
-       ret = fsg_add(c->cdev, c, fsg_common);
+       ret = fsg_bind_config(c->cdev, c, fsg_common);
        if (ret < 0)
                return ret;