diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-04-30 03:53:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:44 -0400 |
commit | e5b393e4f1178faaf3d7c22ef63e70c79633bd66 (patch) | |
tree | b8d7235c13ac720bbf5aba8edb27747d4961cc24 /drivers | |
parent | cf1c63c3e68679dcac1cc6a37e619d9106ebc0ca (diff) |
istallion: TIOCG/SSOFTCAR handling removal
This is handled (and correctly) by the core code so does not belong
incorrectly in the driver.
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/istallion.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/char/istallion.c b/drivers/char/istallion.c index 37dc3d202c27..a1427d39d933 100644 --- a/drivers/char/istallion.c +++ b/drivers/char/istallion.c | |||
@@ -1682,16 +1682,6 @@ static int stli_ioctl(struct tty_struct *tty, struct file *file, unsigned int cm | |||
1682 | rc = 0; | 1682 | rc = 0; |
1683 | 1683 | ||
1684 | switch (cmd) { | 1684 | switch (cmd) { |
1685 | case TIOCGSOFTCAR: | ||
1686 | rc = put_user(((tty->termios->c_cflag & CLOCAL) ? 1 : 0), | ||
1687 | (unsigned __user *) arg); | ||
1688 | break; | ||
1689 | case TIOCSSOFTCAR: | ||
1690 | if ((rc = get_user(ival, (unsigned __user *) arg)) == 0) | ||
1691 | tty->termios->c_cflag = | ||
1692 | (tty->termios->c_cflag & ~CLOCAL) | | ||
1693 | (ival ? CLOCAL : 0); | ||
1694 | break; | ||
1695 | case TIOCGSERIAL: | 1685 | case TIOCGSERIAL: |
1696 | rc = stli_getserial(portp, argp); | 1686 | rc = stli_getserial(portp, argp); |
1697 | break; | 1687 | break; |