staging: comedi: comedi_fc: use comedi_inc_scan_progress()
authorIan Abbott <abbotti@mev.co.uk>
Mon, 15 Sep 2014 12:46:00 +0000 (13:46 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Sep 2014 22:55:31 +0000 (15:55 -0700)
Since `cfc_inc_scan_progress()` is just an inline function that calls
`comedi_inc_scan_progress()`, replace calls to the former to the latter
in the "comedi_fc" module.  This is part of the migration of
functionality from the "comedi_fc" module to the core "comedi" module.

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

index 8a4abe8119f83f5231730a0e7275d4850f76731b..7401e78a1f4174fab15f26a1f84d8c5b3e676361 100644 (file)
@@ -41,7 +41,7 @@ unsigned int cfc_write_array_to_buffer(struct comedi_subdevice *s,
 
        comedi_buf_memcpy_to(s, 0, data, num_bytes);
        comedi_buf_write_free(s, num_bytes);
-       cfc_inc_scan_progress(s, num_bytes);
+       comedi_inc_scan_progress(s, num_bytes);
        async->events |= COMEDI_CB_BLOCK;
 
        return num_bytes;
@@ -57,7 +57,7 @@ unsigned int cfc_read_array_from_buffer(struct comedi_subdevice *s,
        num_bytes = comedi_buf_read_alloc(s, num_bytes);
        comedi_buf_memcpy_from(s, 0, data, num_bytes);
        comedi_buf_read_free(s, num_bytes);
-       cfc_inc_scan_progress(s, num_bytes);
+       comedi_inc_scan_progress(s, num_bytes);
        s->async->events |= COMEDI_CB_BLOCK;
 
        return num_bytes;