staging: comedi: hwdrv_apci3120: use sample manipulation helpers
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Fri, 31 Oct 2014 19:04:35 +0000 (12:04 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 4 Nov 2014 00:34:18 +0000 (16:34 -0800)
Use the recently added sample manipulation helpers to remove the hardcoded
assumption of the sample size.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/addi-data/hwdrv_apci3120.c

index facd2c4..9170766 100644 (file)
@@ -947,7 +947,9 @@ static int apci3120_cyclic_ai(int mode,
                /* If DMA Enabled */
                struct apci3120_dmabuf *dmabuf0 = &devpriv->dmabuf[0];
                struct apci3120_dmabuf *dmabuf1 = &devpriv->dmabuf[1];
-               unsigned int scan_bytes = cmd->scan_end_arg * sizeof(short);
+               unsigned int scan_bytes;
+
+               scan_bytes = comedi_samples_to_bytes(s, cmd->scan_end_arg);
 
                devpriv->b_InterruptMode = APCI3120_DMA_MODE;