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

Commit 853280a4 authored by Tejun Heo's avatar Tejun Heo
Browse files

ide: use blk_run_queue() instead of blk_start_queueing()



blk_start_queueing() is being phased out in favor of
[__]blk_run_queue().  Switch.

Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 1e75540e
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -24,11 +24,8 @@ static void issue_park_cmd(ide_drive_t *drive, unsigned long timeout)
			start_queue = 1;
		spin_unlock_irq(&hwif->lock);

		if (start_queue) {
			spin_lock_irq(q->queue_lock);
			blk_start_queueing(q);
			spin_unlock_irq(q->queue_lock);
		}
		if (start_queue)
			blk_run_queue(q);
		return;
	}
	spin_unlock_irq(&hwif->lock);