|
@@ -561,8 +561,7 @@ EXPORT_SYMBOL(__kfifo_to_user_r);
|
|
|
unsigned int __kfifo_dma_in_prepare_r(struct __kfifo *fifo,
|
|
|
struct scatterlist *sgl, int nents, unsigned int len, size_t recsize)
|
|
|
{
|
|
|
- if (!nents)
|
|
|
- BUG();
|
|
|
+ BUG_ON(!nents);
|
|
|
|
|
|
len = __kfifo_max_r(len, recsize);
|
|
|
|
|
@@ -585,8 +584,7 @@ EXPORT_SYMBOL(__kfifo_dma_in_finish_r);
|
|
|
unsigned int __kfifo_dma_out_prepare_r(struct __kfifo *fifo,
|
|
|
struct scatterlist *sgl, int nents, unsigned int len, size_t recsize)
|
|
|
{
|
|
|
- if (!nents)
|
|
|
- BUG();
|
|
|
+ BUG_ON(!nents);
|
|
|
|
|
|
len = __kfifo_max_r(len, recsize);
|
|
|
|