diff options
| author | Julia Lawall <julia@diku.dk> | 2011-08-02 12:35:03 +0200 | 
|---|---|---|
| committer | Jonas Bonn <jonas@southpole.se> | 2012-02-17 09:55:22 +0100 | 
| commit | 2e1c958de4e22b6badc13dba1a0ebaa5aa798664 (patch) | |
| tree | 0ea5522e0f1b84af0707c13a0b8ac9359d6d3d81 | |
| parent | 3f6ffc8c2087791920721f086f9a92fde7bed9e2 (diff) | |
| download | olio-linux-3.10-2e1c958de4e22b6badc13dba1a0ebaa5aa798664.tar.xz olio-linux-3.10-2e1c958de4e22b6badc13dba1a0ebaa5aa798664.zip  | |
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>
| -rw-r--r-- | arch/openrisc/mm/init.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/openrisc/mm/init.c b/arch/openrisc/mm/init.c index 359dcb20fe8..736f6b2f30a 100644 --- a/arch/openrisc/mm/init.c +++ b/arch/openrisc/mm/init.c @@ -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();  |