From: Sasha Levin Date: Thu, 8 Nov 2012 20:23:08 +0000 (-0500) Subject: ARM: integrator: use BUG_ON where possible X-Git-Tag: omap-for-v3.8/fixes-for-merge-window-v4-signed~50^2~4^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7a9b36517d38cfa2213a346b154d2d7046ff223;p=pandora-kernel.git ARM: integrator: use BUG_ON where possible Just use BUG_ON() instead of constructions such as: if (...) BUG() A simplified version of the semantic patch that makes this transformation is as follows: (http://coccinelle.lip6.fr/) // @@ expression e; @@ - if (e) BUG(); + BUG_ON(e); // Signed-off-by: Sasha Levin Acked-by: Arnd Bergmann Signed-off-by: Linus Walleij --- Reading git-diff-tree failed