OSDN Git Service

dcbnl: Use BUG_ON() instead of BUG()
[uclinux-h8/linux.git] / net / dcb / dcbnl.c
index da6ee81..0a36007 100644 (file)
@@ -208,10 +208,7 @@ static struct sk_buff *dcbnl_newmsg(int type, u8 cmd, u32 port, u32 seq,
                return NULL;
 
        nlh = nlmsg_put(skb, port, seq, type, sizeof(*dcb), flags);
-       if (!nlh) {
-               /* header should always fit, allocation must be buggy */
-               BUG();
-       }
+       BUG_ON(!nlh);
 
        dcb = nlmsg_data(nlh);
        dcb->dcb_family = AF_UNSPEC;