Lines Matching defs:hubd
2544 usb_hub_descriptor_t hubd;
2546 totlen = uimin(buflen, sizeof(hubd));
2547 memcpy(&hubd, buf, totlen);
2550 hubd.bNbrPorts = sc->sc_noport;
2551 USETW(hubd.wHubCharacteristics,
2556 hubd.bPwrOn2PwrGood = OHCI_RHD_GET_POTPGT(v);
2559 hubd.DeviceRemovable[i++] = (uint8_t)v;
2560 hubd.bDescLength = USB_HUB_DESCRIPTOR_SIZE + i;
2561 totlen = uimin(totlen, hubd.bDescLength);
2562 memcpy(buf, &hubd, totlen);