• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/serial/

Lines Matching defs:command_port

392 	struct usb_serial_port *command_port;
409 command_port = serial->port[COMMAND_PORT];
412 command_port->bulk_out_endpointAddress);
441 command_port->bulk_in_endpointAddress);
559 usb_set_serial_port_data(command_port, command_info);
560 command_port->write_urb->complete = command_port_write_callback;
561 command_port->read_urb->complete = command_port_read_callback;
622 struct usb_serial_port *command_port;
634 command_port = serial->port[COMMAND_PORT];
635 kfree(usb_get_serial_port_data(command_port));
1000 struct usb_serial_port *command_port = urb->context;
1008 command_info = usb_get_serial_port_data(command_port);
1021 usb_serial_debug_data(debug, &command_port->dev,
1043 command_port->read_urb->dev = command_port->serial->dev;
1044 result = usb_submit_urb(command_port->read_urb, GFP_ATOMIC);
1131 struct usb_serial_port *command_port;
1140 command_port = port->serial->port[COMMAND_PORT];
1141 command_info = usb_get_serial_port_data(command_port);
1145 transfer_buffer = (__u8 *)command_port->write_urb->transfer_buffer;
1148 command_port->write_urb->transfer_buffer_length = datasize + 1;
1149 command_port->write_urb->dev = port->serial->dev;
1150 retval = usb_submit_urb(command_port->write_urb, GFP_NOIO);
1160 usb_kill_urb(command_port->write_urb);
1358 struct usb_serial_port *command_port;
1362 command_port = serial->port[COMMAND_PORT];
1363 command_info = usb_get_serial_port_data(command_port);
1366 usb_clear_halt(serial->dev, command_port->read_urb->pipe);
1368 command_port->read_urb->dev = serial->dev;
1369 retval = usb_submit_urb(command_port->read_urb, GFP_KERNEL);
1387 struct usb_serial_port *command_port;
1390 command_port = serial->port[COMMAND_PORT];
1391 command_info = usb_get_serial_port_data(command_port);
1395 usb_kill_urb(command_port->read_urb);