]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
Staging: BUG to BUG_ON changes
authorStoyan Gaydarov <stoyboyker@gmail.com>
Tue, 10 Mar 2009 05:10:27 +0000 (00:10 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:26 +0000 (14:54 -0700)
Signed-off-by: Stoyan Gaydarov <stoyboyker@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers.c
drivers/staging/otus/wwrap.c
drivers/staging/usbip/vhci_sysfs.c
drivers/staging/wlan-ng/hfa384x_usb.c

index 3e397d01ccce10cf710ee16d33b2e40ec93ef002..6e13e450dc73979812fc8b50accbd19ef336f82f 100644 (file)
@@ -544,8 +544,7 @@ unsigned int comedi_buf_munge(struct comedi_async *async, unsigned int num_bytes
 
        if (s->munge == NULL || (async->cmd.flags & CMDF_RAWDATA)) {
                async->munge_count += num_bytes;
-               if ((int)(async->munge_count - async->buf_write_count) > 0)
-                       BUG();
+               BUG_ON((int)(async->munge_count - async->buf_write_count) > 0);
                return num_bytes;
        }
        /* don't munge partial samples */
@@ -575,8 +574,7 @@ unsigned int comedi_buf_munge(struct comedi_async *async, unsigned int num_bytes
                async->munge_ptr %= async->prealloc_bufsz;
                count += block_size;
        }
-       if ((int)(async->munge_count - async->buf_write_count) > 0)
-               BUG();
+       BUG_ON((int)(async->munge_count - async->buf_write_count) > 0);
        return count;
 }
 
index a0b1e0b452db8d0ffbdce06d22c9f02d242cd9f4..4db8f6e75ad8340f671485f6dafdf390f373b0a9 100644 (file)
@@ -350,8 +350,7 @@ void zfLnxUsbDataIn_callback(urb_t *urb)
     buf->len = 0;
 #endif
 
-    if ((buf->tail + urb->actual_length) > buf->end)
-        BUG();
+    BUG_ON((buf->tail + urb->actual_length) > buf->end);
 
     skb_put(buf, urb->actual_length);
 
index 0fd33a62d93470a8e5fea1430c4187d52a1dfb97..e4c71435aa11d397bff493184abcdd9ee7db286d 100644 (file)
@@ -31,8 +31,7 @@ static ssize_t show_status(struct device *dev, struct device_attribute *attr,
        char *s = out;
        int i = 0;
 
-       if (!the_controller || !out)
-               BUG();
+       BUG_ON(!the_controller || !out);
 
        spin_lock(&the_controller->lock);
 
index 13a8ace1a03ca891756a835867d801fe5fdafb4c..888198c9a1068503309e1f831ed4e1768dee96e1 100644 (file)
@@ -3176,8 +3176,7 @@ static void hfa384x_usbin_callback(struct urb *urb)
                goto exit;
 
        skb = hw->rx_urb_skb;
-       if (!skb || (skb->data != urb->transfer_buffer))
-               BUG();
+       BUG_ON(!skb || (skb->data != urb->transfer_buffer));
 
        hw->rx_urb_skb = NULL;