summaryrefslogtreecommitdiff
path: root/arch/openrisc/kernel
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2011-08-02 10:35:03 (GMT)
committerJonas Bonn <jonas@southpole.se>2012-02-17 08:55:22 (GMT)
commit2e1c958de4e22b6badc13dba1a0ebaa5aa798664 (patch)
tree0ea5522e0f1b84af0707c13a0b8ac9359d6d3d81 /arch/openrisc/kernel
parent3f6ffc8c2087791920721f086f9a92fde7bed9e2 (diff)
downloadlinux-fsl-qoriq-2e1c958de4e22b6badc13dba1a0ebaa5aa798664.tar.xz
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>
Diffstat (limited to 'arch/openrisc/kernel')
0 files changed, 0 insertions, 0 deletions