Home | History | Annotate | Download | only in usb

Lines Matching defs:hubd

4175 		usb_hub_descriptor_t hubd;
4177 totlen = uimin(buflen, sizeof(hubd));
4178 memcpy(&hubd, buf, totlen);
4179 hubd.bNbrPorts = sc->sc_rhportcount[bn];
4180 USETW(hubd.wHubCharacteristics, UHD_PWR_NO_SWITCH);
4181 hubd.bPwrOn2PwrGood = 200;
4184 hubd.DeviceRemovable[i++] = 0;
4186 hubd.bDescLength = USB_HUB_DESCRIPTOR_SIZE + i;
4187 totlen = uimin(totlen, hubd.bDescLength);
4188 memcpy(buf, &hubd, totlen);