n_tty: Remove unused echo_overrun field
authorPeter Hurley <peter@hurleysoftware.com>
Sat, 15 Jun 2013 14:04:21 +0000 (10:04 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 Jul 2013 00:02:21 +0000 (17:02 -0700)
The echo_overrun field is only assigned and never tested; remove it.

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/n_tty.c

index a69470e..c1c721f 100644 (file)
@@ -96,7 +96,6 @@ struct n_tty_data {
 
        /* must hold exclusive termios_rwsem to reset these */
        unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
-       unsigned char echo_overrun:1;
 
        /* shared by producer and consumer */
        char *read_buf;
@@ -326,7 +325,7 @@ static void reset_buffer_flags(struct n_tty_data *ldata)
        ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
 
        mutex_lock(&ldata->echo_lock);
-       ldata->echo_pos = ldata->echo_cnt = ldata->echo_overrun = 0;
+       ldata->echo_pos = ldata->echo_cnt = 0;
        mutex_unlock(&ldata->echo_lock);
 
        ldata->erasing = 0;
@@ -782,14 +781,11 @@ static void process_echoes(struct tty_struct *tty)
        if (nr == 0) {
                ldata->echo_pos = 0;
                ldata->echo_cnt = 0;
-               ldata->echo_overrun = 0;
        } else {
                int num_processed = ldata->echo_cnt - nr;
                ldata->echo_pos += num_processed;
                ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
                ldata->echo_cnt = nr;
-               if (num_processed > 0)
-                       ldata->echo_overrun = 0;
        }
 
        mutex_unlock(&ldata->echo_lock);
@@ -835,8 +831,6 @@ static void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
                        ldata->echo_pos++;
                }
                ldata->echo_pos &= N_TTY_BUF_SIZE - 1;
-
-               ldata->echo_overrun = 1;
        } else {
                new_byte_pos = ldata->echo_pos + ldata->echo_cnt;
                new_byte_pos &= N_TTY_BUF_SIZE - 1;