USB_DT_BOS
case USB_DT_BOS:
ret = usb_get_descriptor(dev, USB_DT_BOS, 0, bos, USB_DT_BOS_SIZE);
ret = usb_get_descriptor(dev, USB_DT_BOS, 0, buffer, total_len);
case USB_DT_BOS << 8:
case USB_DT_BOS:
bos->bDescriptorType = USB_DT_BOS;
.bDescriptorType = USB_DT_BOS,
if ((wValue >> 8) != USB_DT_BOS)
if ((wValue & 0xff00) != (USB_DT_BOS << 8))
bos->bDescriptorType = USB_DT_BOS;
req.wValue = cpu_to_le16(USB_DT_BOS << 8);
retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
.bDescriptorType = USB_DT_BOS,
if ((wValue >> 8) != USB_DT_BOS)