Lines Matching refs:bos
552 struct usb_bos_descriptor *bos = cdev->req->buf; in bos_desc() local
554 bos->bLength = USB_DT_BOS_SIZE; in bos_desc()
555 bos->bDescriptorType = USB_DT_BOS; in bos_desc()
557 bos->wTotalLength = cpu_to_le16(USB_DT_BOS_SIZE); in bos_desc()
558 bos->bNumDeviceCaps = 0; in bos_desc()
564 usb_ext = cdev->req->buf + le16_to_cpu(bos->wTotalLength); in bos_desc()
565 bos->bNumDeviceCaps++; in bos_desc()
566 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_EXT_CAP_SIZE); in bos_desc()
576 ss_cap = cdev->req->buf + le16_to_cpu(bos->wTotalLength); in bos_desc()
577 bos->bNumDeviceCaps++; in bos_desc()
578 le16_add_cpu(&bos->wTotalLength, USB_DT_USB_SS_CAP_SIZE); in bos_desc()
600 return le16_to_cpu(bos->wTotalLength); in bos_desc()