diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-03-26 11:15:12 -0500 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2006-03-26 11:15:12 -0500 |
commit | 373ebfbf17a8ecad304f65cb92c4d2d10adc0a19 (patch) | |
tree | b2cc0bd4a1f26f38515476f436d532926b331a85 /drivers/mtd/maps | |
parent | 36ddf5bbdea7ba4582abc62f106f0f0e9f0b6b91 (diff) |
BUG_ON() Conversion in drivers/mtd/
this changes if() BUG(); constructs to BUG_ON() which is
cleaner, contains unlikely() and can better optimized away.
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'drivers/mtd/maps')
-rw-r--r-- | drivers/mtd/maps/dilnetpc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mtd/maps/dilnetpc.c b/drivers/mtd/maps/dilnetpc.c index b51c757817d8..efb221692641 100644 --- a/drivers/mtd/maps/dilnetpc.c +++ b/drivers/mtd/maps/dilnetpc.c | |||
@@ -218,8 +218,8 @@ static void dnp_set_vpp(struct map_info *not_used, int on) | |||
218 | { | 218 | { |
219 | if(--vpp_counter == 0) | 219 | if(--vpp_counter == 0) |
220 | setcsc(CSC_RBWR, getcsc(CSC_RBWR) | 0x4); | 220 | setcsc(CSC_RBWR, getcsc(CSC_RBWR) | 0x4); |
221 | else if(vpp_counter < 0) | 221 | else |
222 | BUG(); | 222 | BUG_ON(vpp_counter < 0); |
223 | } | 223 | } |
224 | spin_unlock_irq(&dnpc_spin); | 224 | spin_unlock_irq(&dnpc_spin); |
225 | } | 225 | } |
@@ -240,8 +240,8 @@ static void adnp_set_vpp(struct map_info *not_used, int on) | |||
240 | { | 240 | { |
241 | if(--vpp_counter == 0) | 241 | if(--vpp_counter == 0) |
242 | setcsc(CSC_RBWR, getcsc(CSC_RBWR) | 0x8); | 242 | setcsc(CSC_RBWR, getcsc(CSC_RBWR) | 0x8); |
243 | else if(vpp_counter < 0) | 243 | else |
244 | BUG(); | 244 | BUG_ON(vpp_counter < 0); |
245 | } | 245 | } |
246 | spin_unlock_irq(&dnpc_spin); | 246 | spin_unlock_irq(&dnpc_spin); |
247 | } | 247 | } |