Skip to content

Commit

Permalink
ide: use setup_timer
Browse files Browse the repository at this point in the history
Use setup_timer() instead of init_timer() to simplify the code.

Signed-off-by: Geliang Tang <geliangtang@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Geliang Tang authored and David S. Miller committed May 8, 2017
1 parent 2d3e486 commit 1a1df90
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/ide/ide-probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1183,9 +1183,7 @@ static void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)

spin_lock_init(&hwif->lock);

init_timer(&hwif->timer);
hwif->timer.function = &ide_timer_expiry;
hwif->timer.data = (unsigned long)hwif;
setup_timer(&hwif->timer, &ide_timer_expiry, (unsigned long)hwif);

init_completion(&hwif->gendev_rel_comp);

Expand Down

0 comments on commit 1a1df90

Please sign in to comment.