Home | History | Annotate | Download | only in usb

Lines Matching defs:ucaa

122 	struct ucom_attach_args ucaa;
128 memset(&ucaa, 0, sizeof(ucaa));
157 ucaa.ucaa_bulkin = ucaa.ucaa_bulkout = -1;
169 ucaa.ucaa_bulkin = ed->bEndpointAddress;
172 ucaa.ucaa_bulkout = ed->bEndpointAddress;
175 if (ucaa.ucaa_bulkin == -1 || ucaa.ucaa_bulkout == -1) {
181 ucaa.ucaa_ibufsize = UARKBUFSZ;
182 ucaa.ucaa_obufsize = UARKBUFSZ;
183 ucaa.ucaa_ibufsizepad = UARKBUFSZ;
184 ucaa.ucaa_opkthdrlen = 0;
185 ucaa.ucaa_device = sc->sc_udev;
186 ucaa.ucaa_iface = sc->sc_iface;
187 ucaa.ucaa_methods = &uark_methods;
188 ucaa.ucaa_arg = sc;
189 ucaa.ucaa_info = NULL;
193 sc->sc_subdev = config_found(self, &ucaa, ucomprint,