From: Ian Abbott Date: Mon, 15 Sep 2014 12:45:58 +0000 (+0100) Subject: staging: comedi: comedi_fc: use comedi_bytes_per_scan() X-Git-Tag: firefly_0821_release~176^2~3121^2~427 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=55deb39b1290df023b23273a4c541784c6570098;p=firefly-linux-kernel-4.4.55.git staging: comedi: comedi_fc: use comedi_bytes_per_scan() Since `cfc_bytes_per_scan()` is just an inline function that calls `comedi_bytes_per_scan()`, 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 Reviewed-by: H Hartley Sweeten Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/comedi_fc.c b/drivers/staging/comedi/drivers/comedi_fc.c index 407ec70798eb..72fa71886f62 100644 --- a/drivers/staging/comedi/drivers/comedi_fc.c +++ b/drivers/staging/comedi/drivers/comedi_fc.c @@ -25,7 +25,7 @@ void cfc_inc_scan_progress(struct comedi_subdevice *s, unsigned int num_bytes) { struct comedi_async *async = s->async; - unsigned int scan_length = cfc_bytes_per_scan(s); + unsigned int scan_length = comedi_bytes_per_scan(s); async->scan_progress += num_bytes; if (async->scan_progress >= scan_length) {