diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2016-01-10 14:51:39 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-01-28 14:19:12 -0800 |
commit | a657eecd022d82c5b1795243f54389112f42c7f9 (patch) | |
tree | eab153734229d3e8363cadfb201bda44fe7289b8 /include/linux/isdn.h | |
parent | cd7b4b3944381713038d39240098908ffeec647d (diff) | |
download | talos-obmc-linux-a657eecd022d82c5b1795243f54389112f42c7f9.tar.gz talos-obmc-linux-a657eecd022d82c5b1795243f54389112f42c7f9.zip |
isdn: Remove ASYNC_CLOSING
The tty core no longer provides ASYNC_CLOSING. Use private flag for
same purpose, which is to disable AT-emulator output (why this is
necessary is not clear).
Cc: Karsten Keil <isdn@linux-pingi.de>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
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, 1 insertions, 0 deletions
diff --git a/include/linux/isdn.h b/include/linux/isdn.h index 1e9a0f2a8626..df97c8444f5d 100644 --- a/include/linux/isdn.h +++ b/include/linux/isdn.h @@ -319,6 +319,7 @@ typedef struct modem_info { int online; /* 1 = B-Channel is up, drop data */ /* 2 = B-Channel is up, deliver d.*/ int dialing; /* Dial in progress or ATA */ + int closing; int rcvsched; /* Receive needs schedule */ int isdn_driver; /* Index to isdn-driver */ int isdn_channel; /* Index to isdn-channel */ |