wok-current annotate linmodem-intel-537/stuff/linmodem-intel-537-kernel-2.6.30.patch @ rev 6926
Up: git to 1.7.3.2.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 17:13:31 2010 +0000 (2010-10-22) |
parents | |
children |
rev | line source |
---|---|
jozee@4589 | 1 --- intel-536-537/coredrv/softserial.c.orig Fri Jul 3 17:58:30 2009 |
jozee@4589 | 2 +++ intel-536-537/coredrv/softserial.c Thu Nov 5 16:26:13 2009 |
jozee@4589 | 3 @@ -362,7 +362,7 @@ |
jozee@4589 | 4 { |
jozee@4589 | 5 if( (ptty->flags & (1 << TTY_DO_WRITE_WAKEUP)) && |
jozee@4589 | 6 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26) |
jozee@4589 | 7 - (ptty->ldisc.ops->write_wakeup != NULL)) |
jozee@4589 | 8 + (ptty->ldisc->ops->write_wakeup != NULL)) |
jozee@4589 | 9 #else |
jozee@4589 | 10 (ptty->ldisc.write_wakeup != NULL)) |
jozee@4589 | 11 #endif |
jozee@4589 | 12 @@ -371,7 +371,7 @@ |
jozee@4589 | 13 printk("ss_bg_eh:ldisc wakeup\n"); |
jozee@4589 | 14 #endif |
jozee@4589 | 15 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26) |
jozee@4589 | 16 - (ptty->ldisc.ops->write_wakeup)(ptty); |
jozee@4589 | 17 + (ptty->ldisc->ops->write_wakeup)(ptty); |
jozee@4589 | 18 #else |
jozee@4589 | 19 (ptty->ldisc.write_wakeup)(ptty); |
jozee@4589 | 20 #endif |