aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2010-02-26 04:15:09 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-03-03 19:43:06 -0500
commit20962c10c19862c58c03eec2434279a5d104c40e (patch)
tree85ca59dbbf0979964760e87d85de9b59578f5a49 /drivers/staging
parent882e5b32b5d68960f46331215fc3c301df508110 (diff)
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/comedi/drivers/dmm32at.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/comedi/drivers/dmm32at.c b/drivers/staging/comedi/drivers/dmm32at.c
index 9db9a467c8f..d5cbd515c37 100644
--- a/drivers/staging/comedi/drivers/dmm32at.c
+++ b/drivers/staging/comedi/drivers/dmm32at.c
@@ -1048,11 +1048,10 @@ static int dmm32at_dio_insn_config(struct comedi_device *dev,
1048 * value COMEDI_INPUT or COMEDI_OUTPUT. */ 1048 * value COMEDI_INPUT or COMEDI_OUTPUT. */
1049 1049
1050 /* if output clear the bit, otherwise set it */ 1050 /* if output clear the bit, otherwise set it */
1051 if (data[0] == COMEDI_OUTPUT) { 1051 if (data[0] == COMEDI_OUTPUT)
1052 devpriv->dio_config &= ~chanbit; 1052 devpriv->dio_config &= ~chanbit;
1053 } else { 1053 else
1054 devpriv->dio_config |= chanbit; 1054 devpriv->dio_config |= chanbit;
1055 }
1056 /* get access to the DIO regs */ 1055 /* get access to the DIO regs */
1057 dmm_outb(dev, DMM32AT_CNTRL, DMM32AT_DIOACC); 1056 dmm_outb(dev, DMM32AT_CNTRL, DMM32AT_DIOACC);
1058 /* set the DIO's to the new configuration setting */ 1057 /* set the DIO's to the new configuration setting */