]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/isdn/i4l/isdn_common.c
TTY: switch tty_insert_flip_char
[karo-tx-linux.git] / drivers / isdn / i4l / isdn_common.c
index 7093169ee0c97e477c387fd2d88d428e74b43ffe..4a387ec021ad949a4d9ce6f0f929b63d038f9f59 100644 (file)
@@ -913,7 +913,7 @@ isdn_readbchan_tty(int di, int channel, struct tty_struct *tty, int cisco_hack)
                        while ((count_pull < skb->len) && (len > 0)) {
                                /* push every character but the last to the tty buffer directly */
                                if (count_put)
-                                       tty_insert_flip_char(tty, last, TTY_NORMAL);
+                                       tty_insert_flip_char(port, last, TTY_NORMAL);
                                len--;
                                if (dev->drv[di]->DLEflag & DLEmask) {
                                        last = DLE;
@@ -953,16 +953,16 @@ isdn_readbchan_tty(int di, int channel, struct tty_struct *tty, int cisco_hack)
                         * Now we can dequeue it.
                         */
                        if (cisco_hack)
-                               tty_insert_flip_char(tty, last, 0xFF);
+                               tty_insert_flip_char(port, last, 0xFF);
                        else
-                               tty_insert_flip_char(tty, last, TTY_NORMAL);
+                               tty_insert_flip_char(port, last, TTY_NORMAL);
 #ifdef CONFIG_ISDN_AUDIO
                        ISDN_AUDIO_SKB_LOCK(skb) = 0;
 #endif
                        skb = skb_dequeue(&dev->drv[di]->rpqueue[channel]);
                        dev_kfree_skb(skb);
                } else {
-                       tty_insert_flip_char(tty, last, TTY_NORMAL);
+                       tty_insert_flip_char(port, last, TTY_NORMAL);
                        /* Not yet emptied this buff, so it
                         * must stay in the queue, for further calls
                         * but we pull off the data we got until now.