usb: gadget: defer setting maxpacket till ->setup()
Taken from linux kernel with commit commit 765f5b830e547229bb752e7b232ee83e2b3d49d5 Author: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Thu Jun 23 14:26:11 2011 +0200 usb: gadget: defer setting maxpacket till ->setup() Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
This commit is contained in:
parent
5b9ce0e28a
commit
04afd5b59b
@ -283,7 +283,7 @@ static void device_qual(struct usb_composite_dev *cdev)
|
||||
qual->bDeviceSubClass = cdev->desc.bDeviceSubClass;
|
||||
qual->bDeviceProtocol = cdev->desc.bDeviceProtocol;
|
||||
/* ASSUME same EP0 fifo size at both speeds */
|
||||
qual->bMaxPacketSize0 = cdev->desc.bMaxPacketSize0;
|
||||
qual->bMaxPacketSize0 = cdev->gadget->ep0->maxpacket;
|
||||
qual->bNumConfigurations = count_configs(cdev, USB_DT_DEVICE_QUALIFIER);
|
||||
qual->bRESERVED = 0;
|
||||
}
|
||||
@ -736,6 +736,8 @@ composite_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
|
||||
case USB_DT_DEVICE:
|
||||
cdev->desc.bNumConfigurations =
|
||||
count_configs(cdev, USB_DT_DEVICE);
|
||||
cdev->desc.bMaxPacketSize0 =
|
||||
cdev->gadget->ep0->maxpacket;
|
||||
value = min(w_length, (u16) sizeof cdev->desc);
|
||||
memcpy(req->buf, &cdev->desc, value);
|
||||
break;
|
||||
|
@ -1248,6 +1248,7 @@ eth_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
|
||||
switch (wValue >> 8) {
|
||||
|
||||
case USB_DT_DEVICE:
|
||||
device_desc.bMaxPacketSize0 = gadget->ep0->maxpacket;
|
||||
value = min(wLength, (u16) sizeof device_desc);
|
||||
memcpy(req->buf, &device_desc, value);
|
||||
break;
|
||||
@ -2132,7 +2133,6 @@ autoconf_fail:
|
||||
hs_subset_descriptors();
|
||||
}
|
||||
|
||||
device_desc.bMaxPacketSize0 = gadget->ep0->maxpacket;
|
||||
usb_gadget_set_selfpowered(gadget);
|
||||
|
||||
/* For now RNDIS is always a second config */
|
||||
|
Loading…
Reference in New Issue
Block a user