Commit 9b363c83 authored by Allen Pais's avatar Allen Pais Committed by Greg Kroah-Hartman
Browse files

drivers: tty: pnx8xxx: use setup_timer() helper.



    Use setup_timer function instead of initializing timer with the
    function and data fields.

Signed-off-by: default avatarAllen Pais <allen.lkml@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 30561512
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -666,9 +666,8 @@ static void __init pnx8xxx_init_ports(void)
	first = 0;

	for (i = 0; i < NR_PORTS; i++) {
		init_timer(&pnx8xxx_ports[i].timer);
		pnx8xxx_ports[i].timer.function = pnx8xxx_timeout;
		pnx8xxx_ports[i].timer.data     = (unsigned long)&pnx8xxx_ports[i];
		setup_timer(&pnx8xxx_ports[i].timer, pnx8xxx_timeout,
			    (unsigned long)&pnx8xxx_ports[i]);
		pnx8xxx_ports[i].port.ops = &pnx8xxx_pops;
	}
}