diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-01-16 12:10:23 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-17 02:31:27 -0500 |
commit | 925d70d64bfeccb669c0750943585944abb28b51 (patch) | |
tree | 80cb5fff01a025d2cfd3bc0985eebb917b14c10a /drivers/char | |
parent | 09979236d6dc6a51c21131c4a8c0be7e1992a398 (diff) |
[PATCH] Remove long dead #if 0 code from rio_param
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/rio/rioparam.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/drivers/char/rio/rioparam.c b/drivers/char/rio/rioparam.c index 4cc7f4942bfc..c622f46d6d77 100644 --- a/drivers/char/rio/rioparam.c +++ b/drivers/char/rio/rioparam.c | |||
@@ -195,27 +195,6 @@ int SleepFlag; | |||
195 | ** paramed with OPEN, we want to restore the saved port termio, but | 195 | ** paramed with OPEN, we want to restore the saved port termio, but |
196 | ** only if StoredTermio has been saved, i.e. NOT 1st open after reboot. | 196 | ** only if StoredTermio has been saved, i.e. NOT 1st open after reboot. |
197 | */ | 197 | */ |
198 | #if 0 | ||
199 | if (PortP->FirstOpen) { | ||
200 | PortP->StoredTty.iflag = TtyP->tm.c_iflag; | ||
201 | PortP->StoredTty.oflag = TtyP->tm.c_oflag; | ||
202 | PortP->StoredTty.cflag = TtyP->tm.c_cflag; | ||
203 | PortP->StoredTty.lflag = TtyP->tm.c_lflag; | ||
204 | PortP->StoredTty.line = TtyP->tm.c_line; | ||
205 | for (i = 0; i < NCC + 5; i++) | ||
206 | PortP->StoredTty.cc[i] = TtyP->tm.c_cc[i]; | ||
207 | PortP->FirstOpen = 0; | ||
208 | } else if (PortP->Store || PortP->Lock) { | ||
209 | rio_dprintk(RIO_DEBUG_PARAM, "OPEN: Restoring stored/locked params\n"); | ||
210 | TtyP->tm.c_iflag = PortP->StoredTty.iflag; | ||
211 | TtyP->tm.c_oflag = PortP->StoredTty.oflag; | ||
212 | TtyP->tm.c_cflag = PortP->StoredTty.cflag; | ||
213 | TtyP->tm.c_lflag = PortP->StoredTty.lflag; | ||
214 | TtyP->tm.c_line = PortP->StoredTty.line; | ||
215 | for (i = 0; i < NCC + 5; i++) | ||
216 | TtyP->tm.c_cc[i] = PortP->StoredTty.cc[i]; | ||
217 | } | ||
218 | #endif | ||
219 | } | 198 | } |
220 | 199 | ||
221 | /* | 200 | /* |
@@ -273,16 +252,6 @@ int SleepFlag; | |||
273 | phb_param_ptr = (struct phb_param *) PacketP->data; | 252 | phb_param_ptr = (struct phb_param *) PacketP->data; |
274 | 253 | ||
275 | 254 | ||
276 | #if 0 | ||
277 | /* | ||
278 | ** COR 1 | ||
279 | */ | ||
280 | if (TtyP->tm.c_iflag & INPCK) { | ||
281 | rio_dprintk(RIO_DEBUG_PARAM, "Parity checking on input enabled\n"); | ||
282 | Cor1 |= COR1_INPCK; | ||
283 | } | ||
284 | #endif | ||
285 | |||
286 | switch (TtyP->termios->c_cflag & CSIZE) { | 255 | switch (TtyP->termios->c_cflag & CSIZE) { |
287 | case CS5: | 256 | case CS5: |
288 | { | 257 | { |
@@ -524,10 +493,6 @@ int SleepFlag; | |||
524 | if (TtyP->termios->c_cflag & XMT1EN) | 493 | if (TtyP->termios->c_cflag & XMT1EN) |
525 | rio_dprintk(RIO_DEBUG_PARAM, "XMT1EN (?)\n"); | 494 | rio_dprintk(RIO_DEBUG_PARAM, "XMT1EN (?)\n"); |
526 | #endif | 495 | #endif |
527 | #if 0 | ||
528 | if (TtyP->termios->c_cflag & LOBLK) | ||
529 | rio_dprintk(RIO_DEBUG_PARAM, "LOBLK - JCL output blocks when not current\n"); | ||
530 | #endif | ||
531 | if (TtyP->termios->c_lflag & ISIG) | 496 | if (TtyP->termios->c_lflag & ISIG) |
532 | rio_dprintk(RIO_DEBUG_PARAM, "Input character signal generating enabled\n"); | 497 | rio_dprintk(RIO_DEBUG_PARAM, "Input character signal generating enabled\n"); |
533 | if (TtyP->termios->c_lflag & ICANON) | 498 | if (TtyP->termios->c_lflag & ICANON) |
@@ -572,14 +537,6 @@ int SleepFlag; | |||
572 | rio_dprintk(RIO_DEBUG_PARAM, "Carriage return delay set\n"); | 537 | rio_dprintk(RIO_DEBUG_PARAM, "Carriage return delay set\n"); |
573 | if (TtyP->termios->c_oflag & TABDLY) | 538 | if (TtyP->termios->c_oflag & TABDLY) |
574 | rio_dprintk(RIO_DEBUG_PARAM, "Tab delay set\n"); | 539 | rio_dprintk(RIO_DEBUG_PARAM, "Tab delay set\n"); |
575 | #if 0 | ||
576 | if (TtyP->termios->c_oflag & BSDLY) | ||
577 | rio_dprintk(RIO_DEBUG_PARAM, "Back-space delay set\n"); | ||
578 | if (TtyP->termios->c_oflag & VTDLY) | ||
579 | rio_dprintk(RIO_DEBUG_PARAM, "Vertical tab delay set\n"); | ||
580 | if (TtyP->termios->c_oflag & FFDLY) | ||
581 | rio_dprintk(RIO_DEBUG_PARAM, "Form-feed delay set\n"); | ||
582 | #endif | ||
583 | /* | 540 | /* |
584 | ** These things are kind of useful in a later life! | 541 | ** These things are kind of useful in a later life! |
585 | */ | 542 | */ |