Sasha Levin 8166ea07cb alpha: 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/)

// <smpl>
@@
expression e;
@@
- if (e) BUG();
+ BUG_ON(e);
// </smpl>

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2012-11-08 22:42:02 +01:00
..
2009-01-15 16:39:40 -08:00
2012-03-20 21:29:46 -04:00
2012-03-28 18:11:12 +01:00
2011-03-31 11:26:23 -03:00
2012-03-28 18:11:12 +01:00
2009-05-02 15:36:10 -07:00
2012-03-28 18:11:12 +01:00
2011-03-31 11:26:23 -03:00
2005-04-16 15:20:36 -07:00
2012-03-28 18:11:12 +01:00
2005-04-16 15:20:36 -07:00
2012-03-28 18:11:12 +01:00
2012-05-05 13:00:21 +02:00
2012-11-08 22:42:02 +01:00
2010-08-31 22:45:31 -04:00
2012-03-28 18:11:12 +01:00
2011-09-27 18:08:04 +02:00
2012-08-13 16:50:19 -07:00
2012-03-28 18:11:12 +01:00