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>
This commit is contained in:

committed by
Adrian Bunk

parent
b74945547f
commit
232443e2c9
@@ -466,8 +466,7 @@ static void ffb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
|
||||
unsigned long flags;
|
||||
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];
|
||||
|
||||
|
Reference in New Issue
Block a user