瀏覽代碼

BUG_ON() Conversion in drivers/video/

this changes if() BUG(); constructs to BUG_ON() which is
cleaner, contains unlikely() and can better optimized away.

Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Eric Sesterhenn 19 年之前
父節點
當前提交
232443e2c9
共有 2 個文件被更改,包括 2 次插入4 次删除
  1. 1 2
      drivers/video/bw2.c
  2. 1 2
      drivers/video/ffb.c

+ 1 - 2
drivers/video/bw2.c

@@ -327,8 +327,7 @@ static void bw2_init_one(struct sbus_dev *sdev)
 	} else
 	} else
 #else
 #else
 	{
 	{
-		if (!sdev)
-			BUG();
+		BUG_ON(!sdev);
 		all->par.physbase = sdev->reg_addrs[0].phys_addr;
 		all->par.physbase = sdev->reg_addrs[0].phys_addr;
 		resp = &sdev->resource[0];
 		resp = &sdev->resource[0];
 		sbusfb_fill_var(&all->info.var, (sdev ? sdev->prom_node : 0), 1);
 		sbusfb_fill_var(&all->info.var, (sdev ? sdev->prom_node : 0), 1);

+ 1 - 2
drivers/video/ffb.c

@@ -466,8 +466,7 @@ static void ffb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
 	unsigned long flags;
 	unsigned long flags;
 	u32 fg;
 	u32 fg;
 
 
-	if (rect->rop != ROP_COPY && rect->rop != ROP_XOR)
-		BUG();
+	BUG_ON(rect->rop != ROP_COPY && rect->rop != ROP_XOR);
 
 
 	fg = ((u32 *)info->pseudo_palette)[rect->color];
 	fg = ((u32 *)info->pseudo_palette)[rect->color];