arch/openrisc/mm/init.c: trivial: use BUG_ON
authorJulia Lawall <julia@diku.dk>
Tue, 2 Aug 2011 10:35:03 +0000 (12:35 +0200)
committerJonas Bonn <jonas@southpole.se>
Fri, 17 Feb 2012 08:55:22 +0000 (09:55 +0100)
Use BUG_ON(x) rather than if(x) BUG();

The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@ identifier x; @@
-if (x) BUG();
+BUG_ON(x);

@@ identifier x; @@
-if (!x) BUG();
+BUG_ON(!x);
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Jonas Bonn <jonas@southpole.se>
arch/openrisc/mm/init.c

index 359dcb2..736f6b2 100644 (file)
@@ -222,8 +222,7 @@ void __init mem_init(void)
 {
        int codesize, reservedpages, datasize, initsize;
 
-       if (!mem_map)
-               BUG();
+       BUG_ON(!mem_map);
 
        set_max_mapnr_init();