On Sun, 11 Dec 2005 19:20:38 +0100 Hansjoerg Lipp <[EMAIL PROTECTED]> wrote:
> From: Tilman Schmidt <[EMAIL PROTECTED]>, Hansjoerg Lipp <[EMAIL PROTECTED]> > > This patch adds the tty interface to the gigaset module. > The tty interface provides direct access to the AT command set of the > Gigaset devices. > > Signed-off-by: Hansjoerg Lipp <[EMAIL PROTECTED]> > Signed-off-by: Tilman Schmidt <[EMAIL PROTECTED]> > --- > > +static struct tty_operations if_ops = { > + .open = if_open, > + .close = if_close, > + .ioctl = if_ioctl, > + .write = if_write, > + .write_room = if_write_room, > + .chars_in_buffer = if_chars_in_buffer, > + .set_termios = if_set_termios, > + .throttle = if_throttle, > + .unthrottle = if_unthrottle, > +#if 0 > + .break_ctl = serial_break, > +#endif > + .tiocmget = if_tiocmget, > + .tiocmset = if_tiocmset, > +}; Missing .owner = THIS_MODULE - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html