BUG_ON() Conversion in drivers/isdn
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>
This commit is contained in:

committed by
Adrian Bunk

parent
56ee48277f
commit
6dd44a7446
@@ -974,8 +974,7 @@ void isdn_ppp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, struct sk_buf
|
||||
int slot;
|
||||
int proto;
|
||||
|
||||
if (net_dev->local->master)
|
||||
BUG(); // we're called with the master device always
|
||||
BUG_ON(net_dev->local->master); // we're called with the master device always
|
||||
|
||||
slot = lp->ppp_slot;
|
||||
if (slot < 0 || slot >= ISDN_MAX_CHANNELS) {
|
||||
@@ -2527,8 +2526,7 @@ static struct sk_buff *isdn_ppp_decompress(struct sk_buff *skb,struct ippp_struc
|
||||
printk(KERN_DEBUG "ippp: no decompressor defined!\n");
|
||||
return skb;
|
||||
}
|
||||
if (!stat) // if we have a compressor, stat has been set as well
|
||||
BUG();
|
||||
BUG_ON(!stat); // if we have a compressor, stat has been set as well
|
||||
|
||||
if((master && *proto == PPP_COMP) || (!master && *proto == PPP_COMPFRAG) ) {
|
||||
// compressed packets are compressed by their protocol type
|
||||
|
Reference in New Issue
Block a user