]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
TTY: serial_core, remove superfluous set_task_state
authorJiri Slaby <jslaby@suse.cz>
Wed, 20 Apr 2011 08:43:17 +0000 (10:43 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 25 Apr 2011 21:19:12 +0000 (14:19 -0700)
msleep* is guaranteed to return with TASK_RUNNING task state. And
since there is no other set_task_state in the paths of
uart_wait_until_sent, we need not to set_task_state to TASK_RUNNING.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/tty/serial/serial_core.c

index 69d00008f7a35cd5b0788e174e499bb762d3baaa..db7912cb7ae041a71a901437d3c835ee242530a9 100644 (file)
@@ -1414,7 +1414,6 @@ static void __uart_wait_until_sent(struct uart_port *port, int timeout)
                if (time_after(jiffies, expire))
                        break;
        }
-       set_current_state(TASK_RUNNING); /* might not be needed */
 }
 
 static void uart_wait_until_sent(struct tty_struct *tty, int timeout)