wok annotate linmodem-intel-536ep/stuff/linmodem-intel-536ep-kernel-2.6.30.patch @ rev 7817

busybox/init: add subroot= parameter
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 25 15:12:42 2010 +0100 (2010-12-25)
parents
children
rev   line source
jozee@4588 1 --- intel-536-537/coredrv/softserial.c.orig Fri Jul 3 17:58:30 2009
jozee@4588 2 +++ intel-536-537/coredrv/softserial.c Thu Nov 5 16:26:13 2009
jozee@4588 3 @@ -362,7 +362,7 @@
jozee@4588 4 {
jozee@4588 5 if( (ptty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
jozee@4588 6 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
jozee@4588 7 - (ptty->ldisc.ops->write_wakeup != NULL))
jozee@4588 8 + (ptty->ldisc->ops->write_wakeup != NULL))
jozee@4588 9 #else
jozee@4588 10 (ptty->ldisc.write_wakeup != NULL))
jozee@4588 11 #endif
jozee@4588 12 @@ -371,7 +371,7 @@
jozee@4588 13 printk("ss_bg_eh:ldisc wakeup\n");
jozee@4588 14 #endif
jozee@4588 15 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
jozee@4588 16 - (ptty->ldisc.ops->write_wakeup)(ptty);
jozee@4588 17 + (ptty->ldisc->ops->write_wakeup)(ptty);
jozee@4588 18 #else
jozee@4588 19 (ptty->ldisc.write_wakeup)(ptty);
jozee@4588 20 #endif