taglinefilesource code
scc_driver136drivers/char/scc.cstruct tty_driver scc_driver;        /* new in 1.1.xx */
scc_driver2173drivers/char/scc.cmemset(&scc_driver, 0, sizeof(struct tty_driver));
scc_driver2174drivers/char/scc.cscc_driver.magic = TTY_DRIVER_MAGIC;
scc_driver2175drivers/char/scc.cscc_driver.name = "sc";
scc_driver2176drivers/char/scc.cscc_driver.major = TTY_MAJOR;    
scc_driver2177drivers/char/scc.cscc_driver.minor_start = 96;
scc_driver2178drivers/char/scc.cscc_driver.num = Nchips*2;
scc_driver2179drivers/char/scc.cscc_driver.type = TTY_DRIVER_TYPE_SERIAL;
scc_driver2180drivers/char/scc.cscc_driver.subtype = SERIAL_TYPE_NORMAL;      /* not needed */
scc_driver2181drivers/char/scc.cscc_driver.init_termios = tty_std_termios;
scc_driver2182drivers/char/scc.cscc_driver.init_termios.c_iflag = IGNBRK | IGNPAR;
scc_driver2183drivers/char/scc.cscc_driver.init_termios.c_cflag = B9600  | CS8 | CLOCAL;
scc_driver2184drivers/char/scc.cscc_driver.flags = TTY_DRIVER_REAL_RAW;
scc_driver2185drivers/char/scc.cscc_driver.refcount = &scc_refcount;  /* not needed yet */
scc_driver2186drivers/char/scc.cscc_driver.table = scc_table;
scc_driver2187drivers/char/scc.cscc_driver.termios = (struct termios **) scc_termios;
scc_driver2188drivers/char/scc.cscc_driver.termios_locked = (struct termios **) scc_termios_locked;
scc_driver2190drivers/char/scc.cscc_driver.open = scc_open;
scc_driver2191drivers/char/scc.cscc_driver.close = scc_close;
scc_driver2192drivers/char/scc.cscc_driver.write = scc_write;
scc_driver2193drivers/char/scc.cscc_driver.put_char = scc_put_char;
scc_driver2194drivers/char/scc.cscc_driver.flush_chars = scc_flush_chars;        
scc_driver2195drivers/char/scc.cscc_driver.write_room = scc_write_room;
scc_driver2196drivers/char/scc.cscc_driver.chars_in_buffer = scc_chars_in_buffer;
scc_driver2197drivers/char/scc.cscc_driver.flush_buffer = scc_flush_buffer;
scc_driver2198drivers/char/scc.cscc_driver.ioctl = scc_ioctl;
scc_driver2199drivers/char/scc.cscc_driver.throttle = scc_throttle;
scc_driver2200drivers/char/scc.cscc_driver.unthrottle = scc_unthrottle;
scc_driver2201drivers/char/scc.cscc_driver.set_termios = scc_set_termios;
scc_driver2202drivers/char/scc.cscc_driver.stop = scc_stop;
scc_driver2203drivers/char/scc.cscc_driver.start = scc_start;
scc_driver2204drivers/char/scc.cscc_driver.hangup = scc_hangup;
scc_driver2206drivers/char/scc.cif (tty_register_driver(&scc_driver))
scc_driver2264drivers/char/scc.cscc_driver.name, chan, SCC_data[chan], SCC_ctrl[chan],