浏览代码

ata: Replace BUG() with BUG_ON().

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

Signed-off-by: Harman Kalra <harman4linux@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Harman Kalra 9 年之前
父节点
当前提交
02d9d3cbac
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      drivers/ata/pata_octeon_cf.c

+ 1 - 2
drivers/ata/pata_octeon_cf.c

@@ -152,8 +152,7 @@ static void octeon_cf_set_piomode(struct ata_port *ap, struct ata_device *dev)
 		div = 8;
 		div = 8;
 	T = (int)((1000000000000LL * div) / octeon_get_io_clock_rate());
 	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;
 	t1 = timing.setup;
 	if (t1)
 	if (t1)