Home | History | Annotate | Download | only in usb

Lines Matching defs:ucaa

146 	struct ucom_attach_args ucaa;
186 ucaa.ucaa_info = "Generic Serial Device";
187 ucaa.ucaa_ibufsize = UGENSA_BUFSIZE;
188 ucaa.ucaa_obufsize = UGENSA_BUFSIZE;
189 ucaa.ucaa_ibufsizepad = UGENSA_BUFSIZE;
190 ucaa.ucaa_portno = UCOM_UNK_PORTNO;
191 ucaa.ucaa_opkthdrlen = 0;
192 ucaa.ucaa_device = dev;
193 ucaa.ucaa_iface = iface;
194 ucaa.ucaa_methods = &ugensa_methods;
195 ucaa.ucaa_arg = sc;
197 ucaa.ucaa_bulkin = ucaa.ucaa_bulkout = -1;
213 if (ucaa.ucaa_bulkin == -1 && dir == UE_DIR_IN) {
215 ucaa.ucaa_bulkin = addr;
218 if (ucaa.ucaa_bulkout == -1 && dir == UE_DIR_OUT) {
220 ucaa.ucaa_bulkout = addr;
226 if (ucaa.ucaa_bulkin == -1) {
230 if (ucaa.ucaa_bulkout == -1) {
238 DPRINTF(("ugensa: in=%#x out=%#x\n", ucaa.ucaa_bulkin,
239 ucaa.ucaa_bulkout));
240 sc->sc_subdev = config_found(self, &ucaa, ucomprint,