From afde8d73230109e12aff7e18fbb6bea01279a0fe Mon Sep 17 00:00:00 2001 From: Christian Lamparter Date: Thu, 7 Aug 2014 11:56:25 +0200 Subject: [PATCH] carl9170 firmware: command endpoint is bulk in full-speed mode Roland Wahl discovered that endpoint 4 needs to be an bulk endpoint in the full-speed configuration. Signed-off-by: Christian Lamparter --- carlfw/usb/usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/carlfw/usb/usb.c b/carlfw/usb/usb.c index d7bc432..e1fb27e 100644 --- a/carlfw/usb/usb.c +++ b/carlfw/usb/usb.c @@ -159,7 +159,7 @@ static struct ar9170_usb_config usb_config_fullspeed = { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, .bEndpointAddress = USB_DIR_OUT | AR9170_USB_EP_CMD, - .bmAttributes = USB_ENDPOINT_XFER_INT, + .bmAttributes = USB_ENDPOINT_XFER_BULK, .wMaxPacketSize = cpu_to_le16(64), .bInterval = 1, }, -- 2.31.1