diff options
author | Amitoj Kaur Chawla <[email protected]> | 2016-05-28 13:43:39 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2016-07-08 16:16:54 -0300 |
commit | 2aefee05aac042b519aa05612fe47ff391a1137a (patch) | |
tree | 711e10326cd68351f99adf90076876c09623b1fe /tools/perf/scripts/python | |
parent | 654043f002b5ec954aef5baafeb37b3158b0352d (diff) |
[media] saa7164: Replace if and BUG with BUG_ON
Replace if condition and BUG() with a BUG_ON having the conditional
expression of the if statement as argument.
The Coccinelle semantic patch used to make this change is as follows:
@@ expression E,f; @@
(
if (<+... f(...) ...+>) { BUG(); }
|
- if (E) { BUG(); }
+ BUG_ON(E);
)
Signed-off-by: Amitoj Kaur Chawla <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions