/src/sys/rump/dev/lib/libugenhc/ |
ugenhc.c | 151 usb_device_descriptor_t devd; local in function:ugenhc_roothub_ctrl 153 totlen = uimin(buflen, sizeof(devd)); 154 memcpy(&devd, buf, totlen); 155 USETW(devd.idVendor, 0x7275); 156 USETW(devd.idProduct, 0x6d72); 157 memcpy(buf, &devd, totlen);
|
ugenhc.c | 151 usb_device_descriptor_t devd; local in function:ugenhc_roothub_ctrl 153 totlen = uimin(buflen, sizeof(devd)); 154 memcpy(&devd, buf, totlen); 155 USETW(devd.idVendor, 0x7275); 156 USETW(devd.idProduct, 0x6d72); 157 memcpy(buf, &devd, totlen);
|
/src/sys/dev/usb/ |
vhci.c | 491 usb_device_descriptor_t devd; local in function:vhci_roothub_ctrl 493 totlen = uimin(buflen, sizeof(devd)); 494 memcpy(&devd, buf, totlen); 495 USETW(devd.idVendor, 0); 496 USETW(devd.idProduct, 0); 497 memcpy(buf, &devd, totlen);
|
vhci.c | 491 usb_device_descriptor_t devd; local in function:vhci_roothub_ctrl 493 totlen = uimin(buflen, sizeof(devd)); 494 memcpy(&devd, buf, totlen); 495 USETW(devd.idVendor, 0); 496 USETW(devd.idProduct, 0); 497 memcpy(buf, &devd, totlen);
|