1
0
Fork 0

arch/openrisc/mm/init.c: trivial: use BUG_ON

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>
hifive-unleashed-5.1
Julia Lawall 2011-08-02 12:35:03 +02:00 committed by Jonas Bonn
parent 3f6ffc8c20
commit 2e1c958de4
1 changed files with 1 additions and 2 deletions

View 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();