Signed-off-by: Andrzej Pietrasiewicz <andrze...@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.p...@samsung.com>
---
 drivers/usb/gadget/f_obex.c |   19 ++++++++-----------
 1 files changed, 8 insertions(+), 11 deletions(-)

diff --git a/drivers/usb/gadget/f_obex.c b/drivers/usb/gadget/f_obex.c
index 29a348a..be2d762 100644
--- a/drivers/usb/gadget/f_obex.c
+++ b/drivers/usb/gadget/f_obex.c
@@ -309,23 +309,20 @@ static int obex_bind(struct usb_configuration *c, struct 
usb_function *f)
 {
        struct usb_composite_dev *cdev = c->cdev;
        struct f_obex           *obex = func_to_obex(f);
+       struct usb_string       *us;
        int                     status;
        struct usb_ep           *ep;
 
        if (!can_support_obex(c))
                return -EINVAL;
 
-       if (obex_string_defs[OBEX_CTRL_IDX].id == 0) {
-               status = usb_string_ids_tab(c->cdev, obex_string_defs);
-               if (status < 0)
-                       return status;
-               obex_control_intf.iInterface =
-                       obex_string_defs[OBEX_CTRL_IDX].id;
-
-               status = obex_string_defs[OBEX_DATA_IDX].id;
-               obex_data_nop_intf.iInterface = status;
-               obex_data_intf.iInterface = status;
-       }
+       us = usb_gstrings_attach(cdev, obex_strings,
+                                ARRAY_SIZE(obex_string_defs));
+       if (IS_ERR(us))
+               return PTR_ERR(us);
+       obex_control_intf.iInterface = us[OBEX_CTRL_IDX].id;
+       obex_data_nop_intf.iInterface = us[OBEX_DATA_IDX].id;
+       obex_data_intf.iInterface = us[OBEX_DATA_IDX].id;
 
        /* allocate instance-specific interface IDs, and patch descriptors */
 
-- 
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to