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

Commit 02d9d3cb authored by Harman Kalra's avatar Harman Kalra Committed by Tejun Heo
Browse files

ata: Replace BUG() with BUG_ON().



Replace BUG() with BUG_ON().
Caught by coccinelle.

Signed-off-by: default avatarHarman Kalra <harman4linux@gmail.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 6ec76070
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -152,8 +152,7 @@ static void octeon_cf_set_piomode(struct ata_port *ap, struct ata_device *dev)
		div = 8;
	T = (int)((1000000000000LL * div) / octeon_get_io_clock_rate());

	if (ata_timing_compute(dev, dev->pio_mode, &timing, T, T))
		BUG();
	BUG_ON(ata_timing_compute(dev, dev->pio_mode, &timing, T, T));

	t1 = timing.setup;
	if (t1)