diff options
Diffstat (limited to 'packages/ark3116/ark3116-0.4.1/ark3116.c.patch')
-rw-r--r-- | packages/ark3116/ark3116-0.4.1/ark3116.c.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/ark3116/ark3116-0.4.1/ark3116.c.patch b/packages/ark3116/ark3116-0.4.1/ark3116.c.patch new file mode 100644 index 0000000000..6080abefaa --- /dev/null +++ b/packages/ark3116/ark3116-0.4.1/ark3116.c.patch @@ -0,0 +1,17 @@ +*** ark3116/ark3116.c.orig 2006-04-29 16:00:34.000000000 +0200 +--- ark3116/ark3116.c 2006-04-29 16:00:27.000000000 +0200 +*************** +*** 443,452 **** +--- 443,454 ---- + tty = port->tty; + if (tty && urb->actual_length) { + for (i = 0; i < urb->actual_length ; ++i) { ++ #if 0 + /* if we insert more than TTY_FLIPBUF_SIZE characters, we drop them. */ + if(tty->flip.count >= TTY_FLIPBUF_SIZE) { + tty_flip_buffer_push(tty); + } ++ #endif + /* this doesn't actually push the data through unless tty->low_latency is set */ + tty_insert_flip_char(tty, data[i], 0); + } |