]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
USB: usbtmc: refactor endpoint retrieval
authorJohan Hovold <johan@kernel.org>
Tue, 28 Mar 2017 08:33:16 +0000 (10:33 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Mar 2017 09:53:15 +0000 (11:53 +0200)
Use the new endpoint helpers to lookup the required bulk-in and bulk-out
endpoints, and the optional interrupt-in endpoint.

Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/class/usbtmc.c

index 8fb309a0ff6b5dae0c6f867cd323585aeff17252..578f424decc22b9f340732f6f381fc0d23135e72 100644 (file)
@@ -1375,7 +1375,7 @@ static int usbtmc_probe(struct usb_interface *intf,
 {
        struct usbtmc_device_data *data;
        struct usb_host_interface *iface_desc;
-       struct usb_endpoint_descriptor *endpoint;
+       struct usb_endpoint_descriptor *bulk_in, *bulk_out, *int_in;
        int n;
        int retcode;
 
@@ -1421,49 +1421,29 @@ static int usbtmc_probe(struct usb_interface *intf,
        iface_desc = data->intf->cur_altsetting;
        data->ifnum = iface_desc->desc.bInterfaceNumber;
 
-       /* Find bulk in endpoint */
-       for (n = 0; n < iface_desc->desc.bNumEndpoints; n++) {
-               endpoint = &iface_desc->endpoint[n].desc;
-
-               if (usb_endpoint_is_bulk_in(endpoint)) {
-                       data->bulk_in = endpoint->bEndpointAddress;
-                       dev_dbg(&intf->dev, "Found bulk in endpoint at %u\n",
-                               data->bulk_in);
-                       break;
-               }
-       }
-
-       /* Find bulk out endpoint */
-       for (n = 0; n < iface_desc->desc.bNumEndpoints; n++) {
-               endpoint = &iface_desc->endpoint[n].desc;
-
-               if (usb_endpoint_is_bulk_out(endpoint)) {
-                       data->bulk_out = endpoint->bEndpointAddress;
-                       dev_dbg(&intf->dev, "Found Bulk out endpoint at %u\n",
-                               data->bulk_out);
-                       break;
-               }
-       }
-
-       if (!data->bulk_out || !data->bulk_in) {
+       /* Find bulk endpoints */
+       retcode = usb_find_common_endpoints(iface_desc,
+                       &bulk_in, &bulk_out, NULL, NULL);
+       if (retcode) {
                dev_err(&intf->dev, "bulk endpoints not found\n");
-               retcode = -ENODEV;
                goto err_put;
        }
 
+       data->bulk_in = bulk_in->bEndpointAddress;
+       dev_dbg(&intf->dev, "Found bulk in endpoint at %u\n", data->bulk_in);
+
+       data->bulk_out = bulk_out->bEndpointAddress;
+       dev_dbg(&intf->dev, "Found Bulk out endpoint at %u\n", data->bulk_out);
+
        /* Find int endpoint */
-       for (n = 0; n < iface_desc->desc.bNumEndpoints; n++) {
-               endpoint = &iface_desc->endpoint[n].desc;
-
-               if (usb_endpoint_is_int_in(endpoint)) {
-                       data->iin_ep_present = 1;
-                       data->iin_ep = endpoint->bEndpointAddress;
-                       data->iin_wMaxPacketSize = usb_endpoint_maxp(endpoint);
-                       data->iin_interval = endpoint->bInterval;
-                       dev_dbg(&intf->dev, "Found Int in endpoint at %u\n",
+       retcode = usb_find_int_in_endpoint(iface_desc, &int_in);
+       if (!retcode) {
+               data->iin_ep_present = 1;
+               data->iin_ep = int_in->bEndpointAddress;
+               data->iin_wMaxPacketSize = usb_endpoint_maxp(int_in);
+               data->iin_interval = int_in->bInterval;
+               dev_dbg(&intf->dev, "Found Int in endpoint at %u\n",
                                data->iin_ep);
-                       break;
-               }
        }
 
        retcode = get_capabilities(data);