taglinefilesource code
line193include/linux/tty.hextern void serial_open(unsigned int line);
line30kernel/chr_drv/serial.cstatic void modem_status_intr(unsigned line, unsigned port, struct tty_struct * tty)
line47kernel/chr_drv/serial.cstatic void send_intr(unsigned line, unsigned port, struct tty_struct * tty)
line51kernel/chr_drv/serial.c#define TIMER ((SER1_TIMEOUT-1)+line)
line63kernel/chr_drv/serial.cstatic void receive_intr(unsigned line, unsigned port, struct tty_struct * tty)
line68kernel/chr_drv/serial.ctimer_active |= (1<<(SER1_TIMER-1))<<line;
line71kernel/chr_drv/serial.cstatic void line_status_intr(unsigned line, unsigned port, struct tty_struct * tty)
line85kernel/chr_drv/serial.cstatic void check_tty(unsigned line,struct tty_struct * tty)
line99kernel/chr_drv/serial.cjmp_table[ident](line,port,tty);
line145kernel/chr_drv/serial.cstatic inline void do_rs_write(unsigned line, struct tty_struct * tty)
line149kernel/chr_drv/serial.c#define TIMER ((SER1_TIMEOUT-1)+line)
line156kernel/chr_drv/serial.csend_intr(line,port,tty);
line200kernel/chr_drv/serial.cvoid serial_open(unsigned line)
line205kernel/chr_drv/serial.cif (line>3)
line207kernel/chr_drv/serial.cport = tty_table[64+line].read_q->data;
line210kernel/chr_drv/serial.cport2 = tty_table[64+(line ^ 2)].read_q->data;
line262kernel/chr_drv/serial.cint line = tty - tty_table - 63;
line264kernel/chr_drv/serial.cdo_rs_write(line,tty);