Replace deprecated interruptible_sleep_on_timeout() with direct wait-queue usage. Also replace some rather odd wait-queue usage with the existent macros. Also adjusted the wake_up_interruptible() call appropriately, as I changed all the states to TASK_UNINTERRUPTIBLE (signals were not be checked in the current code). Patch is compile-tested. Signed-off-by: Nishanth Aravamudan Signed-off-by: Domen Puncer --- kj-domen/drivers/usb/serial/digi_acceleport.c | 32 +++++++++++--------------- 1 files changed, 14 insertions(+), 18 deletions(-) diff -puN drivers/usb/serial/digi_acceleport.c~int_sleep_on-drivers_usb_serial_digi_acceleport drivers/usb/serial/digi_acceleport.c --- kj/drivers/usb/serial/digi_acceleport.c~int_sleep_on-drivers_usb_serial_digi_acceleport 2005-03-02 10:45:25.000000000 +0100 +++ kj-domen/drivers/usb/serial/digi_acceleport.c 2005-03-02 10:45:25.000000000 +0100 @@ -13,6 +13,9 @@ * * Peter Berger (pberger@brimson.com) * Al Borchers (borchers@steinerpoint.com) +* +* (2/1/2005) nacc +* removed interruptible_sleep_on_timeout() usage [deprecated] * * (12/03/2001) gkh * switched to using port->open_count instead of private version. @@ -246,6 +249,7 @@ #include #include #include +#include #include "usb-serial.h" /* Defines */ @@ -573,23 +577,14 @@ static inline long cond_wait_interruptib wait_queue_head_t *q, long timeout, spinlock_t *lock, unsigned long flags ) { + DEFINE_WAIT(wait); - wait_queue_t wait; - - - init_waitqueue_entry( &wait, current ); - - set_current_state( TASK_INTERRUPTIBLE ); - - add_wait_queue( q, &wait ); - - spin_unlock_irqrestore( lock, flags ); - + prepare_to_wait(q, &wait, TASK_UNINTERRUPTIBLE); + spin_unlock_irqrestore(lock, flags); timeout = schedule_timeout(timeout); + finish_wait(q, &wait); - remove_wait_queue( q, &wait ); - - return( timeout ); + return timeout; } @@ -1528,7 +1523,7 @@ dbg( "digi_open: TOP: port=%d, open_coun static void digi_close( struct usb_serial_port *port, struct file *filp ) { - + DEFINE_WAIT(wait); int ret; unsigned char buf[32]; struct tty_struct *tty = port->tty; @@ -1604,8 +1599,9 @@ dbg( "digi_close: TOP: port=%d, open_cou dbg( "digi_close: write oob failed, ret=%d", ret ); /* wait for final commands on oob port to complete */ - interruptible_sleep_on_timeout( &priv->dp_flush_wait, - DIGI_CLOSE_TIMEOUT ); + prepare_to_wait(&priv->dp_flush_wait, &wait, TASK_UNINTERRUPTIBLE); + schedule_timeout(DIGI_CLOSE_TIMEOUT); + finish_wait(&priv->dp_flush_wait, &wait); /* shutdown any outstanding bulk writes */ usb_kill_urb(port->write_urb); @@ -2002,7 +1998,7 @@ opcode, line, status, val ); } else if( opcode == DIGI_CMD_IFLUSH_FIFO ) { - wake_up_interruptible( &priv->dp_flush_wait ); + wake_up( &priv->dp_flush_wait ); } _