mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 08:17:46 +00:00
drivers: tty: sa1100: 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>
This commit is contained in:
parent
2876bb6d2c
commit
3b837fa233
1 changed files with 2 additions and 3 deletions
|
@ -640,9 +640,8 @@ static void __init sa1100_init_ports(void)
|
|||
sa1100_ports[i].port.fifosize = 8;
|
||||
sa1100_ports[i].port.line = i;
|
||||
sa1100_ports[i].port.iotype = UPIO_MEM;
|
||||
init_timer(&sa1100_ports[i].timer);
|
||||
sa1100_ports[i].timer.function = sa1100_timeout;
|
||||
sa1100_ports[i].timer.data = (unsigned long)&sa1100_ports[i];
|
||||
setup_timer(&sa1100_ports[i].timer, sa1100_timeout,
|
||||
(unsigned long)&sa1100_ports[i]);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue