Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a1df90a authored by Geliang Tang's avatar Geliang Tang Committed by David S. Miller
Browse files

ide: use setup_timer



Use setup_timer() instead of init_timer() to simplify the code.

Signed-off-by: default avatarGeliang Tang <geliangtang@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2d3e4866
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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);