diff options
| author | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-10-29 09:00:20 -0600 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-10-29 09:00:20 -0600 |
| commit | 942e661203a2cb6f6bad3df5be2ad11b6121f350 (patch) | |
| tree | 9befd18ee778b7c993a4ecda64792b0865414f50 /include/linux | |
| parent | a4426b1ff253a43c99bc5eaac7325251db873237 (diff) | |
ISDN: Remove delayed ttyI xmit
There's really no good reason to delay sending out data on a ttyI, ISDN
is slow enough anyway ;)
(There is one reason, i.e. allowing to coalesce multiple chars, but
that is better fixed by having the upper levels (tty) send larger
buffers)
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/isdn.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/isdn.h b/include/linux/isdn.h index 5f8606e00601..f880d2581520 100644 --- a/include/linux/isdn.h +++ b/include/linux/isdn.h @@ -238,8 +238,7 @@ typedef struct { /* Timer-delays and scheduling-flags */ #define ISDN_TIMER_RES 4 /* Main Timer-Resolution */ #define ISDN_TIMER_MODEMREAD 1 -#define ISDN_TIMER_MODEMXMIT 8 -#define ISDN_TIMER_FAST (ISDN_TIMER_MODEMREAD | ISDN_TIMER_MODEMXMIT) +#define ISDN_TIMER_FAST (ISDN_TIMER_MODEMREAD) /* GLOBAL_FLAGS */ #define ISDN_GLOBAL_STOPPED 1 |
