Commit 9254c841 authored by Niklas Svensson's avatar Niklas Svensson Committed by Greg Kroah-Hartman

staging: comedi: fixing coding style problems

This patch fixes warnings of checkpatch.pl script:

CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around devpriv->timer
+        init_timer(&(devpriv->timer));

CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
+        dev_info(dev->class_dev,
+                "%s: %i microvolt, %li microsecond waveform attached\n",

Task of Eudyptula challenge.
Signed-off-by: default avatarNiklas Svensson <nks@flawful.org>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent acb16513
...@@ -415,14 +415,14 @@ static int waveform_attach(struct comedi_device *dev, ...@@ -415,14 +415,14 @@ static int waveform_attach(struct comedi_device *dev,
for (i = 0; i < s->n_chan; i++) for (i = 0; i < s->n_chan; i++)
devpriv->ao_loopbacks[i] = s->maxdata / 2; devpriv->ao_loopbacks[i] = s->maxdata / 2;
init_timer(&(devpriv->timer)); init_timer(&devpriv->timer);
devpriv->timer.function = waveform_ai_interrupt; devpriv->timer.function = waveform_ai_interrupt;
devpriv->timer.data = (unsigned long)dev; devpriv->timer.data = (unsigned long)dev;
dev_info(dev->class_dev, dev_info(dev->class_dev,
"%s: %i microvolt, %li microsecond waveform attached\n", "%s: %i microvolt, %li microsecond waveform attached\n",
dev->board_name, dev->board_name,
devpriv->uvolt_amplitude, devpriv->usec_period); devpriv->uvolt_amplitude, devpriv->usec_period);
return 0; return 0;
} }
......
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