Lines Matching refs:bos
667 struct usb_bos_descriptor *bos = cdev->req->buf; in bos_desc() local
670 bos->bLength = USB_DT_BOS_SIZE; in bos_desc()
671 bos->bDescriptorType = USB_DT_BOS; in bos_desc()
673 bos->wTotalLength = cpu_to_le16(USB_DT_BOS_SIZE); in bos_desc()
674 bos->bNumDeviceCaps = 0; in bos_desc()
703 usb_ext = cdev->req->buf + le16_to_cpu(bos->wTotalLength); in bos_desc()
704 bos->bNumDeviceCaps++; in bos_desc()
705 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_EXT_CAP_SIZE); in bos_desc()
719 ss_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength); in bos_desc()
720 bos->bNumDeviceCaps++; in bos_desc()
721 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SS_CAP_SIZE); in bos_desc()
751 ssp_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength); in bos_desc()
752 bos->bNumDeviceCaps++; in bos_desc()
754 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SSP_CAP_SIZE(ssac)); in bos_desc()
811 return le16_to_cpu(bos->wTotalLength); in bos_desc()