Commit d1a04408 authored by Allison Randal's avatar Allison Randal Committed by Greg Kroah-Hartman

Staging: comdi: ni_at_ao.c: fix coding style error

The line was too long, used braces on single line for loop body.
Signed-off-by: default avatarAllison Randal <allison@parrot.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 62eeae93
......@@ -32,7 +32,8 @@ Configuration options:
[0] - I/O port base address
[1] - IRQ (unused)
[2] - DMA (unused)
[3] - analog output range, set by jumpers on hardware (0 for -10 to 10V bipolar, 1 for 0V to 10V unipolar)
[3] - analog output range, set by jumpers on hardware (0 for -10 to 10V
bipolar, 1 for 0V to 10V unipolar)
*/
/*
......@@ -431,9 +432,8 @@ static int atao_calib_insn_read(struct comedi_device *dev,
struct comedi_insn *insn, unsigned int *data)
{
int i;
for (i = 0; i < insn->n; i++) {
for (i = 0; i < insn->n; i++)
data[i] = 0; /* XXX */
}
return insn->n;
}
......
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