Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fbf81c29 authored by Luiz Fernando N. Capitulino's avatar Luiz Fernando N. Capitulino Committed by Greg Kroah-Hartman
Browse files

USB: hub: Use usb_endpoint_* functions.

parent 5bc66d53
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -868,13 +868,8 @@ static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)

	endpoint = &desc->endpoint[0].desc;

	/* Output endpoint? Curiouser and curiouser.. */
	if (!(endpoint->bEndpointAddress & USB_DIR_IN))
		goto descriptor_error;

	/* If it's not an interrupt endpoint, we'd better punt! */
	if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
			!= USB_ENDPOINT_XFER_INT)
	/* If it's not an interrupt in endpoint, we'd better punt! */
	if (!usb_endpoint_is_int_in(endpoint))
		goto descriptor_error;

	/* We found a hub */