Staging: comedi: dmm32at.c: Checkpatch cleanup
WARNING: braces {} are not necessary for any arm of this statement + if (data[0] == COMEDI_OUTPUT) { [...] + } else { [...] Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
882e5b32b5
commit
20962c10c1
@ -1048,11 +1048,10 @@ static int dmm32at_dio_insn_config(struct comedi_device *dev,
|
|||||||
* value COMEDI_INPUT or COMEDI_OUTPUT. */
|
* value COMEDI_INPUT or COMEDI_OUTPUT. */
|
||||||
|
|
||||||
/* if output clear the bit, otherwise set it */
|
/* if output clear the bit, otherwise set it */
|
||||||
if (data[0] == COMEDI_OUTPUT) {
|
if (data[0] == COMEDI_OUTPUT)
|
||||||
devpriv->dio_config &= ~chanbit;
|
devpriv->dio_config &= ~chanbit;
|
||||||
} else {
|
else
|
||||||
devpriv->dio_config |= chanbit;
|
devpriv->dio_config |= chanbit;
|
||||||
}
|
|
||||||
/* get access to the DIO regs */
|
/* get access to the DIO regs */
|
||||||
dmm_outb(dev, DMM32AT_CNTRL, DMM32AT_DIOACC);
|
dmm_outb(dev, DMM32AT_CNTRL, DMM32AT_DIOACC);
|
||||||
/* set the DIO's to the new configuration setting */
|
/* set the DIO's to the new configuration setting */
|
||||||
|
Loading…
Reference in New Issue
Block a user