taglinefilesource code
scc_driver132drivers/char/scc.cstruct tty_driver scc_driver;        /* new in 1.1.xx */
scc_driver2196drivers/char/scc.cmemset(&scc_driver, 0, sizeof(struct tty_driver));
scc_driver2197drivers/char/scc.cscc_driver.magic = TTY_DRIVER_MAGIC;
scc_driver2198drivers/char/scc.cscc_driver.name = "sc";
scc_driver2199drivers/char/scc.cscc_driver.major = TTY_MAJOR;    
scc_driver2200drivers/char/scc.cscc_driver.minor_start = 96;
scc_driver2201drivers/char/scc.cscc_driver.num = Nchips*2;
scc_driver2202drivers/char/scc.cscc_driver.type = TTY_DRIVER_TYPE_SERIAL;
scc_driver2203drivers/char/scc.cscc_driver.subtype = 0;      /* not needed */
scc_driver2204drivers/char/scc.cscc_driver.init_termios = tty_std_termios;
scc_driver2205drivers/char/scc.cscc_driver.init_termios.c_cflag = B9600  | CS8 | CREAD | HUPCL | CLOCAL;
scc_driver2206drivers/char/scc.cscc_driver.flags = TTY_DRIVER_REAL_RAW;
scc_driver2207drivers/char/scc.cscc_driver.refcount = &scc_refcount;  /* not needed yet */
scc_driver2208drivers/char/scc.cscc_driver.table = scc_table;
scc_driver2209drivers/char/scc.cscc_driver.termios = (struct termios **) scc_termios;
scc_driver2210drivers/char/scc.cscc_driver.termios_locked = (struct termios **) scc_termios_locked;
scc_driver2211drivers/char/scc.cscc_driver.open = scc_open;
scc_driver2212drivers/char/scc.cscc_driver.close = scc_close;
scc_driver2213drivers/char/scc.cscc_driver.write = scc_write;
scc_driver2214drivers/char/scc.cscc_driver.start = scc_start;
scc_driver2215drivers/char/scc.cscc_driver.stop = scc_stop;
scc_driver2217drivers/char/scc.cscc_driver.put_char = scc_put_char;
scc_driver2218drivers/char/scc.cscc_driver.flush_chars = scc_flush_chars;        
scc_driver2219drivers/char/scc.cscc_driver.write_room = scc_write_room;
scc_driver2220drivers/char/scc.cscc_driver.chars_in_buffer = scc_chars_in_buffer;
scc_driver2221drivers/char/scc.cscc_driver.flush_buffer = scc_flush_buffer;
scc_driver2223drivers/char/scc.cscc_driver.throttle = scc_throttle;
scc_driver2224drivers/char/scc.cscc_driver.unthrottle = scc_unthrottle;
scc_driver2226drivers/char/scc.cscc_driver.ioctl = scc_ioctl;
scc_driver2227drivers/char/scc.cscc_driver.set_termios = scc_set_termios;
scc_driver2229drivers/char/scc.cif (tty_register_driver(&scc_driver))
scc_driver2287drivers/char/scc.cscc_driver.name, chan, SCC_data[chan], SCC_ctrl[chan],