[media] saa7164: Replace if and BUG with BUG_ON
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Sat, 28 May 2016 16:43:39 +0000 (13:43 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 8 Jul 2016 19:16:54 +0000 (16:16 -0300)
commit2aefee05aac042b519aa05612fe47ff391a1137a
tree711e10326cd68351f99adf90076876c09623b1fe
parent654043f002b5ec954aef5baafeb37b3158b0352d
[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 <amitoj1606@gmail.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/pci/saa7164/saa7164-encoder.c
This page took 0.031752 seconds and 5 git commands to generate.