Commit f81ac41b authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: usbduxfast: use comedi_buf_write_samples()

Use comedi_buf_write_samples() to add the samples to the async buffer.
That function will determining the number of bytes to add based on the
bytes_per_sample().
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 504d0239
......@@ -249,19 +249,17 @@ static void usbduxfast_ai_handle_urb(struct comedi_device *dev,
devpriv->ignore--;
} else {
unsigned int nbytes = urb->actual_length;
if (cmd->stop_src == TRIG_COUNT) {
unsigned int nsamples = nbytes / bytes_per_sample(s);
if (cmd->stop_src == TRIG_COUNT) {
if (devpriv->ai_sample_count < nsamples) {
nsamples = devpriv->ai_sample_count;
async->events |= COMEDI_CB_EOA;
}
devpriv->ai_sample_count -= nsamples;
nbytes = nsamples * bytes_per_sample(s);
}
cfc_write_array_to_buffer(s, urb->transfer_buffer, nbytes);
comedi_buf_write_samples(s, urb->transfer_buffer, nsamples);
}
/* if command is still running, resubmit urb for BULK transfer */
......
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