diff options
author | Allen Pais <allen.lkml@gmail.com> | 2017-09-22 13:56:51 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-10-03 20:28:36 +0200 |
commit | 0bf1e84ff00fe068833f0281fa3cfca1e5a40152 (patch) | |
tree | 0121bdee53675f509f1ff183b585778dfac53e2f /drivers/tty/serial/sn_console.c | |
parent | 65f8824f557b5f9abdf4548f2255e4acdd1d2328 (diff) | |
download | talos-obmc-linux-0bf1e84ff00fe068833f0281fa3cfca1e5a40152.tar.gz talos-obmc-linux-0bf1e84ff00fe068833f0281fa3cfca1e5a40152.zip |
drivers: tty: sn_console: use setup_timer() helper.
Use setup_timer function instead of initializing timer with the
function and data fields.
Signed-off-by: Allen Pais <allen.lkml@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/sn_console.c')
-rw-r--r-- | drivers/tty/serial/sn_console.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/tty/serial/sn_console.c b/drivers/tty/serial/sn_console.c index 9e0e6586c698..81d506d28469 100644 --- a/drivers/tty/serial/sn_console.c +++ b/drivers/tty/serial/sn_console.c @@ -687,9 +687,7 @@ static void __init sn_sal_switch_to_asynch(struct sn_cons_port *port) * timer to poll for input and push data from the console * buffer. */ - init_timer(&port->sc_timer); - port->sc_timer.function = sn_sal_timer_poll; - port->sc_timer.data = (unsigned long)port; + setup_timer(&port->sc_timer, sn_sal_timer_poll, (unsigned long)port); if (IS_RUNNING_ON_SIMULATOR()) port->sc_interrupt_timeout = 6; |