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

Commit 7c92357c authored by Geliang Tang's avatar Geliang Tang Committed by Tejun Heo
Browse files

libata: use setup_deferrable_timer



Use setup_deferrable_timer() instead of init_timer_deferrable() to
simplify the code.

Signed-off-by: default avatarGeliang Tang <geliangtang@gmail.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent b2a4b786
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5902,9 +5902,9 @@ struct ata_port *ata_port_alloc(struct ata_host *host)
	INIT_LIST_HEAD(&ap->eh_done_q);
	init_waitqueue_head(&ap->eh_wait_q);
	init_completion(&ap->park_req_pending);
	init_timer_deferrable(&ap->fastdrain_timer);
	ap->fastdrain_timer.function = ata_eh_fastdrain_timerfn;
	ap->fastdrain_timer.data = (unsigned long)ap;
	setup_deferrable_timer(&ap->fastdrain_timer,
			       ata_eh_fastdrain_timerfn,
			       (unsigned long)ap);

	ap->cbl = ATA_CBL_NONE;