mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
uwb: neh: Use setup_timer
Use timer API function setup_timer instead of init_timer to initialize the timer. Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a895dc0509
commit
b9ca0c948c
1 changed files with 1 additions and 3 deletions
|
@ -223,9 +223,7 @@ struct uwb_rc_neh *uwb_rc_neh_add(struct uwb_rc *rc, struct uwb_rccb *cmd,
|
|||
|
||||
kref_init(&neh->kref);
|
||||
INIT_LIST_HEAD(&neh->list_node);
|
||||
init_timer(&neh->timer);
|
||||
neh->timer.function = uwb_rc_neh_timer;
|
||||
neh->timer.data = (unsigned long)neh;
|
||||
setup_timer(&neh->timer, uwb_rc_neh_timer, (unsigned long)neh);
|
||||
|
||||
neh->rc = rc;
|
||||
neh->evt_type = expected_type;
|
||||
|
|
Loading…
Reference in a new issue