diff options
Diffstat (limited to 'drivers/iio/kfifo_buf.c')
-rw-r--r-- | drivers/iio/kfifo_buf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/iio/kfifo_buf.c b/drivers/iio/kfifo_buf.c index 8a6d28ce21b2..6ec763f1202a 100644 --- a/drivers/iio/kfifo_buf.c +++ b/drivers/iio/kfifo_buf.c | |||
@@ -108,10 +108,12 @@ static int iio_read_first_n_kfifo(struct iio_buffer *r, | |||
108 | int ret, copied; | 108 | int ret, copied; |
109 | struct iio_kfifo *kf = iio_to_kfifo(r); | 109 | struct iio_kfifo *kf = iio_to_kfifo(r); |
110 | 110 | ||
111 | if (n < r->bytes_per_datum) | 111 | if (n < r->bytes_per_datum || r->bytes_per_datum == 0) |
112 | return -EINVAL; | 112 | return -EINVAL; |
113 | 113 | ||
114 | ret = kfifo_to_user(&kf->kf, buf, n, &copied); | 114 | ret = kfifo_to_user(&kf->kf, buf, n, &copied); |
115 | if (ret < 0) | ||
116 | return ret; | ||
115 | 117 | ||
116 | return copied; | 118 | return copied; |
117 | } | 119 | } |