Home
last modified time | relevance | path

Searched refs:edge_port (Results 1 – 2 of 2) sorted by relevance

/linux-2.4.37.9/drivers/usb/serial/
Dio_edgeport.c468 static void handle_new_msr (struct edgeport_port *edge_port, __u8 newMsr);
469 static void handle_new_lsr (struct edgeport_port *edge_port, __u8 lsrData, __u8 lsr, __u8 data);
470 static int send_iosp_ext_cmd (struct edgeport_port *edge_port, __u8 command, __u8 param);
472 static int send_cmd_write_baud_rate (struct edgeport_port *edge_port, int baudRate);
473 static void change_port_settings (struct edgeport_port *edge_port, struct termios *old_termios);
474 static int send_cmd_write_uart_register (struct edgeport_port *edge_port, __u8 regNum, __u8 regVal…
475 static int write_cmd_usb (struct edgeport_port *edge_port, unsigned char *buffer, int writeLength…
476 …c void send_more_port_data (struct edgeport_serial *edge_serial, struct edgeport_port *edge_port);
757 struct edgeport_port *edge_port; in edge_interrupt_callback() local
809 edge_port = (struct edgeport_port *)port->private; in edge_interrupt_callback()
[all …]
Dio_ti.c1562 static void handle_new_msr (struct edgeport_port *edge_port, __u8 msr) in handle_new_msr() argument
1569 icount = &edge_port->icount; in handle_new_msr()
1580 wake_up_interruptible (&edge_port->delta_msr_wait); in handle_new_msr()
1584 edge_port->shadow_msr = msr & 0xf0; in handle_new_msr()
1589 static void handle_new_lsr (struct edgeport_port *edge_port, int lsr_data, __u8 lsr, __u8 data) in handle_new_lsr() argument
1596 edge_port->shadow_lsr = lsr; in handle_new_lsr()
1607 if (lsr_data && edge_port->port->tty) { in handle_new_lsr()
1608 tty_insert_flip_char(edge_port->port->tty, data, 0); in handle_new_lsr()
1609 tty_flip_buffer_push(edge_port->port->tty); in handle_new_lsr()
1613 icount = &edge_port->icount; in handle_new_lsr()
[all …]