diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2007-07-09 15:03:12 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-07-12 19:34:41 -0400 |
commit | 6dc731024347ab499c3fc0347ab90d972771b8a1 (patch) | |
tree | e65eda4fc7d141afc0db1acaa17a4c1987697780 | |
parent | eb58c0c5f2b3cf6306a184cdf1c751155b7ddb3b (diff) |
USB: io_*: remove bogus termios no change checks
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/usb/serial/io_edgeport.c | 9 | ||||
-rw-r--r-- | drivers/usb/serial/io_ti.c | 8 |
2 files changed, 0 insertions, 17 deletions
diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c index cebb32f4a831..dd42f57089ff 100644 --- a/drivers/usb/serial/io_edgeport.c +++ b/drivers/usb/serial/io_edgeport.c | |||
@@ -1513,15 +1513,6 @@ static void edge_set_termios (struct usb_serial_port *port, struct ktermios *old | |||
1513 | } | 1513 | } |
1514 | 1514 | ||
1515 | cflag = tty->termios->c_cflag; | 1515 | cflag = tty->termios->c_cflag; |
1516 | /* check that they really want us to change something */ | ||
1517 | if (old_termios) { | ||
1518 | if (cflag == old_termios->c_cflag && | ||
1519 | tty->termios->c_iflag == old_termios->c_iflag) { | ||
1520 | dbg("%s - nothing to change", __FUNCTION__); | ||
1521 | return; | ||
1522 | } | ||
1523 | } | ||
1524 | |||
1525 | dbg("%s - clfag %08x iflag %08x", __FUNCTION__, | 1516 | dbg("%s - clfag %08x iflag %08x", __FUNCTION__, |
1526 | tty->termios->c_cflag, tty->termios->c_iflag); | 1517 | tty->termios->c_cflag, tty->termios->c_iflag); |
1527 | if (old_termios) { | 1518 | if (old_termios) { |
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index 1c6850a074d4..0d3903691e8c 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c | |||
@@ -2544,14 +2544,6 @@ static void edge_set_termios (struct usb_serial_port *port, struct ktermios *old | |||
2544 | } | 2544 | } |
2545 | 2545 | ||
2546 | cflag = tty->termios->c_cflag; | 2546 | cflag = tty->termios->c_cflag; |
2547 | /* check that they really want us to change something */ | ||
2548 | if (old_termios) { | ||
2549 | if (cflag == old_termios->c_cflag && | ||
2550 | tty->termios->c_iflag == old_termios->c_iflag) { | ||
2551 | dbg ("%s - nothing to change", __FUNCTION__); | ||
2552 | return; | ||
2553 | } | ||
2554 | } | ||
2555 | 2547 | ||
2556 | dbg("%s - clfag %08x iflag %08x", __FUNCTION__, | 2548 | dbg("%s - clfag %08x iflag %08x", __FUNCTION__, |
2557 | tty->termios->c_cflag, tty->termios->c_iflag); | 2549 | tty->termios->c_cflag, tty->termios->c_iflag); |