Searched refs:s_desc (Results 1 – 2 of 2) sorted by relevance
229 struct usb_string_descriptor *s_desc; in xdbc_mem_init() local277 s_desc = (struct usb_string_descriptor *)strings->serial; in xdbc_mem_init()278 s_desc->bLength = (strlen(XDBC_STRING_SERIAL) + 1) * 2; in xdbc_mem_init()279 s_desc->bDescriptorType = USB_DT_STRING; in xdbc_mem_init()281 xdbc_put_utf16(s_desc->wData, XDBC_STRING_SERIAL, strlen(XDBC_STRING_SERIAL)); in xdbc_mem_init()282 string_length = s_desc->bLength; in xdbc_mem_init()286 s_desc = (struct usb_string_descriptor *)strings->product; in xdbc_mem_init()287 s_desc->bLength = (strlen(XDBC_STRING_PRODUCT) + 1) * 2; in xdbc_mem_init()288 s_desc->bDescriptorType = USB_DT_STRING; in xdbc_mem_init()290 xdbc_put_utf16(s_desc->wData, XDBC_STRING_PRODUCT, strlen(XDBC_STRING_PRODUCT)); in xdbc_mem_init()[all …]
57 struct usb_string_descriptor *s_desc; in xhci_dbc_populate_strings() local61 s_desc = (struct usb_string_descriptor *)strings->serial; in xhci_dbc_populate_strings()63 UTF16_LITTLE_ENDIAN, (wchar_t *)s_desc->wData, in xhci_dbc_populate_strings()66 s_desc->bLength = (strlen(DBC_STRING_SERIAL) + 1) * 2; in xhci_dbc_populate_strings()67 s_desc->bDescriptorType = USB_DT_STRING; in xhci_dbc_populate_strings()68 string_length = s_desc->bLength; in xhci_dbc_populate_strings()72 s_desc = (struct usb_string_descriptor *)strings->product; in xhci_dbc_populate_strings()74 UTF16_LITTLE_ENDIAN, (wchar_t *)s_desc->wData, in xhci_dbc_populate_strings()77 s_desc->bLength = (strlen(DBC_STRING_PRODUCT) + 1) * 2; in xhci_dbc_populate_strings()78 s_desc->bDescriptorType = USB_DT_STRING; in xhci_dbc_populate_strings()[all …]