forked from Minki/linux
Staging: comedi: fix brace coding style issue in das16m1.c
This is a patch to the das16m1.c file that fixes up a brace coding warning found by the checkpatch.pl tool. Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2b8731348a
commit
4547251f6a
@ -384,20 +384,20 @@ static int das16m1_cmd_exec(struct comedi_device *dev,
|
||||
byte = 0;
|
||||
/* if we are using external start trigger (also board dislikes having
|
||||
* both start and conversion triggers external simultaneously) */
|
||||
if (cmd->start_src == TRIG_EXT && cmd->convert_src != TRIG_EXT) {
|
||||
if (cmd->start_src == TRIG_EXT && cmd->convert_src != TRIG_EXT)
|
||||
byte |= EXT_TRIG_BIT;
|
||||
}
|
||||
|
||||
outb(byte, dev->iobase + DAS16M1_CS);
|
||||
/* clear interrupt bit */
|
||||
outb(0, dev->iobase + DAS16M1_CLEAR_INTR);
|
||||
|
||||
/* enable interrupts and internal pacer */
|
||||
devpriv->control_state &= ~PACER_MASK;
|
||||
if (cmd->convert_src == TRIG_TIMER) {
|
||||
if (cmd->convert_src == TRIG_TIMER)
|
||||
devpriv->control_state |= INT_PACER;
|
||||
} else {
|
||||
else
|
||||
devpriv->control_state |= EXT_PACER;
|
||||
}
|
||||
|
||||
devpriv->control_state |= INTE;
|
||||
outb(devpriv->control_state, dev->iobase + DAS16M1_INTR_CONTROL);
|
||||
|
||||
@ -531,9 +531,8 @@ static void munge_sample_array(short *array, unsigned int num_elements)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < num_elements; i++) {
|
||||
for (i = 0; i < num_elements; i++)
|
||||
array[i] = munge_sample(array[i]);
|
||||
}
|
||||
}
|
||||
|
||||
static void das16m1_handler(struct comedi_device *dev, unsigned int status)
|
||||
|
Loading…
Reference in New Issue
Block a user