Re: [PATCH 5/9] isdn4linux: Siemens Gigaset drivers - tty interface

From: Stephen Hemminger
Date: Mon Dec 12 2005 - 12:56:45 EST


On Sun, 11 Dec 2005 19:20:38 +0100
Hansjoerg Lipp <hjlipp@xxxxxx> wrote:

> From: Tilman Schmidt <tilman@xxxxxxx>, Hansjoerg Lipp <hjlipp@xxxxxx>
>
> 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 <hjlipp@xxxxxx>
> Signed-off-by: Tilman Schmidt <tilman@xxxxxxx>
> ---
>
> +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 linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/