mirror of
https://github.com/torvalds/linux.git
synced 2024-12-30 14:52:05 +00:00
staging: comedi: adl_pci9118: use sample manipulation helpers
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>
This commit is contained in:
parent
b7f9eb0549
commit
1d3d32a752
@ -586,8 +586,9 @@ static void pci9118_ai_munge(struct comedi_device *dev,
|
||||
unsigned int start_chan_index)
|
||||
{
|
||||
struct pci9118_private *devpriv = dev->private;
|
||||
unsigned int i, num_samples = num_bytes / sizeof(short);
|
||||
unsigned short *array = data;
|
||||
unsigned int num_samples = comedi_bytes_to_samples(s, num_bytes);
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < num_samples; i++) {
|
||||
if (devpriv->usedma)
|
||||
|
Loading…
Reference in New Issue
Block a user