taglinefilesource code
scc_driver253drivers/char/scc.cstruct tty_driver scc_driver;
scc_driver2179drivers/char/scc.cscc_driver.name, 2*Nchips+chan, 
scc_driver2185drivers/char/scc.cscc_driver.name, 2*Nchips+chan, 
scc_driver2671drivers/char/scc.cmemset(&scc_driver, 0, sizeof(struct tty_driver));
scc_driver2672drivers/char/scc.cscc_driver.magic = TTY_DRIVER_MAGIC;
scc_driver2673drivers/char/scc.cscc_driver.name = "scc";
scc_driver2674drivers/char/scc.cscc_driver.major = Z8530_MAJOR;
scc_driver2675drivers/char/scc.cscc_driver.minor_start = 0;
scc_driver2676drivers/char/scc.cscc_driver.num = MAXSCC*2;
scc_driver2677drivers/char/scc.cscc_driver.type = TTY_DRIVER_TYPE_SERIAL;
scc_driver2678drivers/char/scc.cscc_driver.subtype = 1;      /* not needed */
scc_driver2679drivers/char/scc.cscc_driver.init_termios = scc_std_termios;
scc_driver2680drivers/char/scc.cscc_driver.init_termios.c_cflag = B9600  | CREAD | CS8 | HUPCL | CLOCAL;
scc_driver2681drivers/char/scc.cscc_driver.init_termios.c_iflag = IGNBRK | IGNPAR;
scc_driver2682drivers/char/scc.cscc_driver.flags = TTY_DRIVER_REAL_RAW;
scc_driver2683drivers/char/scc.cscc_driver.refcount = &scc_refcount;
scc_driver2684drivers/char/scc.cscc_driver.table = scc_table;
scc_driver2685drivers/char/scc.cscc_driver.termios = (struct termios **) scc_termios;
scc_driver2686drivers/char/scc.cscc_driver.termios_locked = (struct termios **) scc_termios_locked;
scc_driver2687drivers/char/scc.cscc_driver.open = scc_open;
scc_driver2688drivers/char/scc.cscc_driver.close = scc_close;
scc_driver2689drivers/char/scc.cscc_driver.write = scc_write;
scc_driver2690drivers/char/scc.cscc_driver.start = scc_start;
scc_driver2691drivers/char/scc.cscc_driver.stop = scc_stop;
scc_driver2693drivers/char/scc.cscc_driver.put_char = scc_put_char;
scc_driver2694drivers/char/scc.cscc_driver.flush_chars = scc_flush_chars;        
scc_driver2695drivers/char/scc.cscc_driver.write_room = scc_write_room;
scc_driver2696drivers/char/scc.cscc_driver.chars_in_buffer = scc_chars_in_buffer;
scc_driver2697drivers/char/scc.cscc_driver.flush_buffer = scc_flush_buffer;
scc_driver2699drivers/char/scc.cscc_driver.throttle = scc_throttle;
scc_driver2700drivers/char/scc.cscc_driver.unthrottle = scc_unthrottle;
scc_driver2702drivers/char/scc.cscc_driver.ioctl = scc_ioctl;
scc_driver2703drivers/char/scc.cscc_driver.set_termios = scc_set_termios;
scc_driver2704drivers/char/scc.cscc_driver.set_ldisc = scc_set_ldisc;
scc_driver2708drivers/char/scc.cif (tty_register_driver(&scc_driver))
scc_driver2761drivers/char/scc.cif ( (errno = tty_unregister_driver(&scc_driver)) )