diff options
author | Jiri Slaby <jslaby@suse.cz> | 2012-04-02 15:53:51 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-09 22:16:54 +0400 |
commit | ce93d33cf45db9893cfc725a2b470da15bfe4435 (patch) | |
tree | 364b1ff9f6beead5f94746d674ed03a93ecc0184 /include/linux/isdn.h | |
parent | 6776a2f07924192fd168bdceb1a00d10630edb4d (diff) | |
download | linux-ce93d33cf45db9893cfc725a2b470da15bfe4435.tar.xz |
TTY: isdn, do not play with module refcounts
The module which called allocate_tty_driver is already refcounted by
the TTY layer automatically. And since THIS_MODULE is isdn_tty and it
allocated the tty_driver, there is no need to do the counts in isdn's
tty->ops->open/close.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Karsten Keil <isdn@linux-pingi.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/isdn.h')
-rw-r--r-- | include/linux/isdn.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/isdn.h b/include/linux/isdn.h index 1b4b4c1846c5..66d9d71e003c 100644 --- a/include/linux/isdn.h +++ b/include/linux/isdn.h @@ -435,7 +435,6 @@ typedef struct atemu { /* Private data (similar to async_struct in <linux/serial.h>) */ typedef struct modem_info { int magic; - struct module *owner; int flags; /* defined in tty.h */ int x_char; /* xon/xoff character */ int mcr; /* Modem control register */ |