mtd: Replace if and BUG with BUG_ON
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Sat, 28 May 2016 16:41:17 +0000 (22:11 +0530)
committerBrian Norris <computersforpeace@gmail.com>
Sun, 10 Jul 2016 01:48:54 +0000 (18:48 -0700)
commit8bf66b24cfcb71d6f3e33a0ebd119678823d7c70
treec559302ae7a4050576362dbdc77ec11cf522e92d
parentb137aab438382fdadfe1272869357485af0252b4
mtd: 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: Brian Norris <computersforpeace@gmail.com>
drivers/mtd/ssfdc.c