Commit 607b6cd3 authored by Cheah Kok Cheong's avatar Cheah Kok Cheong Committed by Greg Kroah-Hartman

Staging: comedi: drivers: comedi_test: Avoid multiple line dereference

Fix checkpatch warning "Avoid multiple line dereference"
using a pointer variable to avoid line wrap.
Signed-off-by: default avatarCheah Kok Cheong <thrust73@gmail.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7dfc6971
...@@ -480,11 +480,11 @@ static void waveform_ao_timer(unsigned long arg) ...@@ -480,11 +480,11 @@ static void waveform_ao_timer(unsigned long arg)
/* output the last scan */ /* output the last scan */
for (i = 0; i < cmd->scan_end_arg; i++) { for (i = 0; i < cmd->scan_end_arg; i++) {
unsigned int chan = CR_CHAN(cmd->chanlist[i]); unsigned int chan = CR_CHAN(cmd->chanlist[i]);
unsigned short *pd;
if (comedi_buf_read_samples(s, pd = &devpriv->ao_loopbacks[chan];
&devpriv->
ao_loopbacks[chan], if (!comedi_buf_read_samples(s, pd, 1)) {
1) == 0) {
/* unexpected underrun! (cancelled?) */ /* unexpected underrun! (cancelled?) */
async->events |= COMEDI_CB_OVERFLOW; async->events |= COMEDI_CB_OVERFLOW;
goto underrun; goto underrun;
......
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