Commit 46a5c391 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: amplc_pci224: use comedi_bytes_per_scan()

This inline function is just a wrapper around comedi_bytes_per_scan().
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 39064f23
...@@ -514,7 +514,7 @@ static void pci224_ao_handle_fifo(struct comedi_device *dev, ...@@ -514,7 +514,7 @@ static void pci224_ao_handle_fifo(struct comedi_device *dev,
{ {
struct pci224_private *devpriv = dev->private; struct pci224_private *devpriv = dev->private;
struct comedi_cmd *cmd = &s->async->cmd; struct comedi_cmd *cmd = &s->async->cmd;
unsigned int bytes_per_scan = cfc_bytes_per_scan(s); unsigned int bytes_per_scan = comedi_bytes_per_scan(s);
unsigned int num_scans; unsigned int num_scans;
unsigned int room; unsigned int room;
unsigned short dacstat; unsigned short dacstat;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment