This inline function is just a wrapper around comedi_bytes_per_scan().

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/pcl812.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/comedi/drivers/pcl812.c 
b/drivers/staging/comedi/drivers/pcl812.c
index 700e4ef..72ae48f 100644
--- a/drivers/staging/comedi/drivers/pcl812.c
+++ b/drivers/staging/comedi/drivers/pcl812.c
@@ -556,8 +556,8 @@ static void pcl812_ai_setup_dma(struct comedi_device *dev,
 
        /*  we use EOS, so adapt DMA buffer to one scan */
        if (devpriv->ai_eos) {
-               devpriv->dmabytestomove[0] = cfc_bytes_per_scan(s);
-               devpriv->dmabytestomove[1] = cfc_bytes_per_scan(s);
+               devpriv->dmabytestomove[0] = comedi_bytes_per_scan(s);
+               devpriv->dmabytestomove[1] = comedi_bytes_per_scan(s);
                devpriv->dma_runs_to_end = 1;
        } else {
                devpriv->dmabytestomove[0] = devpriv->hwdmasize;
@@ -572,7 +572,7 @@ static void pcl812_ai_setup_dma(struct comedi_device *dev,
                        devpriv->dma_runs_to_end = 1;
                } else {
                        /*  how many samples we must transfer? */
-                       bytes = cmd->stop_arg * cfc_bytes_per_scan(s);
+                       bytes = cmd->stop_arg * comedi_bytes_per_scan(s);
 
                        /*  how many DMA pages we must fill */
                        devpriv->dma_runs_to_end =
-- 
2.0.3

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

Reply via email to