Commit 2961f24f authored by Stoyan Gaydarov's avatar Stoyan Gaydarov Committed by Greg Kroah-Hartman

Staging: BUG to BUG_ON changes

Signed-off-by: default avatarStoyan Gaydarov <stoyboyker@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 0773a5c0
...@@ -544,8 +544,7 @@ unsigned int comedi_buf_munge(struct comedi_async *async, unsigned int num_bytes ...@@ -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)) { if (s->munge == NULL || (async->cmd.flags & CMDF_RAWDATA)) {
async->munge_count += num_bytes; async->munge_count += num_bytes;
if ((int)(async->munge_count - async->buf_write_count) > 0) BUG_ON((int)(async->munge_count - async->buf_write_count) > 0);
BUG();
return num_bytes; return num_bytes;
} }
/* don't munge partial samples */ /* don't munge partial samples */
...@@ -575,8 +574,7 @@ unsigned int comedi_buf_munge(struct comedi_async *async, unsigned int num_bytes ...@@ -575,8 +574,7 @@ unsigned int comedi_buf_munge(struct comedi_async *async, unsigned int num_bytes
async->munge_ptr %= async->prealloc_bufsz; async->munge_ptr %= async->prealloc_bufsz;
count += block_size; count += block_size;
} }
if ((int)(async->munge_count - async->buf_write_count) > 0) BUG_ON((int)(async->munge_count - async->buf_write_count) > 0);
BUG();
return count; return count;
} }
......
...@@ -350,8 +350,7 @@ void zfLnxUsbDataIn_callback(urb_t *urb) ...@@ -350,8 +350,7 @@ void zfLnxUsbDataIn_callback(urb_t *urb)
buf->len = 0; buf->len = 0;
#endif #endif
if ((buf->tail + urb->actual_length) > buf->end) BUG_ON((buf->tail + urb->actual_length) > buf->end);
BUG();
skb_put(buf, urb->actual_length); skb_put(buf, urb->actual_length);
......
...@@ -31,8 +31,7 @@ static ssize_t show_status(struct device *dev, struct device_attribute *attr, ...@@ -31,8 +31,7 @@ static ssize_t show_status(struct device *dev, struct device_attribute *attr,
char *s = out; char *s = out;
int i = 0; int i = 0;
if (!the_controller || !out) BUG_ON(!the_controller || !out);
BUG();
spin_lock(&the_controller->lock); spin_lock(&the_controller->lock);
......
...@@ -3176,8 +3176,7 @@ static void hfa384x_usbin_callback(struct urb *urb) ...@@ -3176,8 +3176,7 @@ static void hfa384x_usbin_callback(struct urb *urb)
goto exit; goto exit;
skb = hw->rx_urb_skb; skb = hw->rx_urb_skb;
if (!skb || (skb->data != urb->transfer_buffer)) BUG_ON(!skb || (skb->data != urb->transfer_buffer));
BUG();
hw->rx_urb_skb = NULL; hw->rx_urb_skb = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment