taglinefilesource code
scc_driver201drivers/char/scc.cstruct tty_driver scc_driver;
scc_driver2305drivers/char/scc.cmemset(&scc_driver, 0, sizeof(struct tty_driver));
scc_driver2306drivers/char/scc.cscc_driver.magic = TTY_DRIVER_MAGIC;
scc_driver2307drivers/char/scc.cscc_driver.name = "sc";
scc_driver2308drivers/char/scc.cscc_driver.major = Z8530_MAJOR;    
scc_driver2309drivers/char/scc.cscc_driver.minor_start = 0;
scc_driver2310drivers/char/scc.cscc_driver.num = Nchips*2;
scc_driver2311drivers/char/scc.cscc_driver.type = TTY_DRIVER_TYPE_SERIAL;
scc_driver2312drivers/char/scc.cscc_driver.subtype = 0;      /* not needed */
scc_driver2313drivers/char/scc.cscc_driver.init_termios = tty_std_termios;
scc_driver2314drivers/char/scc.cscc_driver.init_termios.c_cflag = B9600  | CS8 | CREAD | HUPCL | CLOCAL;
scc_driver2315drivers/char/scc.cscc_driver.flags = TTY_DRIVER_REAL_RAW;
scc_driver2316drivers/char/scc.cscc_driver.refcount = &scc_refcount;  /* not needed yet */
scc_driver2317drivers/char/scc.cscc_driver.table = scc_table;
scc_driver2318drivers/char/scc.cscc_driver.termios = (struct termios **) scc_termios;
scc_driver2319drivers/char/scc.cscc_driver.termios_locked = (struct termios **) scc_termios_locked;
scc_driver2320drivers/char/scc.cscc_driver.open = scc_open;
scc_driver2321drivers/char/scc.cscc_driver.close = scc_close;
scc_driver2322drivers/char/scc.cscc_driver.write = scc_write;
scc_driver2323drivers/char/scc.cscc_driver.start = scc_start;
scc_driver2324drivers/char/scc.cscc_driver.stop = scc_stop;
scc_driver2326drivers/char/scc.cscc_driver.put_char = scc_put_char;
scc_driver2327drivers/char/scc.cscc_driver.flush_chars = scc_flush_chars;        
scc_driver2328drivers/char/scc.cscc_driver.write_room = scc_write_room;
scc_driver2329drivers/char/scc.cscc_driver.chars_in_buffer = scc_chars_in_buffer;
scc_driver2330drivers/char/scc.cscc_driver.flush_buffer = scc_flush_buffer;
scc_driver2332drivers/char/scc.cscc_driver.throttle = scc_throttle;
scc_driver2333drivers/char/scc.cscc_driver.unthrottle = scc_unthrottle;
scc_driver2335drivers/char/scc.cscc_driver.ioctl = scc_ioctl;
scc_driver2336drivers/char/scc.cscc_driver.set_termios = scc_set_termios;
scc_driver2338drivers/char/scc.cif (tty_register_driver(&scc_driver))
scc_driver2402drivers/char/scc.cscc_driver.name, chan, SCC_data[chan], SCC_ctrl[chan],