Input: serio - fix protocol number for TouchIT213
[sfrench/cifs-2.6.git] / include / linux / tty_flip.h
index 31548303ee3767095f86efb47696ce433662450e..eb677cf56106cc17dfc1f05873c9478e93813935 100644 (file)
@@ -12,7 +12,7 @@ static inline int tty_insert_flip_char(struct tty_struct *tty,
                                        unsigned char ch, char flag)
 {
        struct tty_buffer *tb = tty->buf.tail;
-       if (tb && tb->active && tb->used < tb->size) {
+       if (tb && tb->used < tb->size) {
                tb->flag_buf_ptr[tb->used] = flag;
                tb->char_buf_ptr[tb->used++] = ch;
                return 1;