For aesthetics, use comedi_buf_write_samples() to add the sample to the
async buffer.

Signed-off-by: H Hartley Sweeten <hswee...@visionengravers.com>
Cc: Ian Abbott <abbo...@mev.co.uk>
Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
---
 drivers/staging/comedi/drivers/adv_pci1710.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/comedi/drivers/adv_pci1710.c 
b/drivers/staging/comedi/drivers/adv_pci1710.c
index 5f387fa..c5422f3 100644
--- a/drivers/staging/comedi/drivers/adv_pci1710.c
+++ b/drivers/staging/comedi/drivers/adv_pci1710.c
@@ -770,7 +770,8 @@ static void pci1710_handle_every_sample(struct 
comedi_device *dev,
                        break;
                }
 
-               comedi_buf_put(s, val & s->maxdata);
+               val &= s->maxdata;
+               comedi_buf_write_samples(s, &val, 1);
 
                s->async->cur_chan++;
                if (s->async->cur_chan >= cmd->chanlist_len)
@@ -814,7 +815,8 @@ static int move_block_from_fifo(struct comedi_device *dev,
                        return ret;
                }
 
-               comedi_buf_put(s, val & s->maxdata);
+               val &= s->maxdata;
+               comedi_buf_write_samples(s, &val, 1);
 
                s->async->cur_chan++;
                if (s->async->cur_chan >= cmd->chanlist_len) {
-- 
2.0.3

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to