|
@@ -290,9 +290,7 @@ static int lcd_probe(struct usb_interface *interface, const struct usb_device_id
|
|
|
endpoint = &iface_desc->endpoint[i].desc;
|
|
|
|
|
|
if (!dev->bulk_in_endpointAddr &&
|
|
|
- (endpoint->bEndpointAddress & USB_DIR_IN) &&
|
|
|
- ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
|
|
|
- == USB_ENDPOINT_XFER_BULK)) {
|
|
|
+ usb_endpoint_is_bulk_in(endpoint)) {
|
|
|
/* we found a bulk in endpoint */
|
|
|
buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
|
|
|
dev->bulk_in_size = buffer_size;
|
|
@@ -305,9 +303,7 @@ static int lcd_probe(struct usb_interface *interface, const struct usb_device_id
|
|
|
}
|
|
|
|
|
|
if (!dev->bulk_out_endpointAddr &&
|
|
|
- !(endpoint->bEndpointAddress & USB_DIR_IN) &&
|
|
|
- ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
|
|
|
- == USB_ENDPOINT_XFER_BULK)) {
|
|
|
+ usb_endpoint_is_bulk_out(endpoint)) {
|
|
|
/* we found a bulk out endpoint */
|
|
|
dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
|
|
|
}
|