mirror of https://gitee.com/openkylin/linux.git
Staging: comedi: cb_pcimdda.c: Checkpatch cleanup
WARNING: braces {} are not necessary for any arm of this statement + if (it->options[2]) { [...] + } else { [...] WARNING: braces {} are not necessary for single statement blocks + if (devpriv->registers) { + comedi_pci_disable(devpriv->pci_dev); + } Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
7c2f1946a5
commit
f1c54e8272
|
@ -284,11 +284,10 @@ static int attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
|||
s->n_chan = thisboard->ao_chans;
|
||||
s->maxdata = figure_out_maxdata(thisboard->ao_bits);
|
||||
/* this is hard-coded here */
|
||||
if (it->options[2]) {
|
||||
if (it->options[2])
|
||||
s->range_table = &range_bipolar10;
|
||||
} else {
|
||||
else
|
||||
s->range_table = &range_bipolar5;
|
||||
}
|
||||
s->insn_write = &ao_winsn;
|
||||
s->insn_read = &ao_rinsn;
|
||||
|
||||
|
@ -337,9 +336,8 @@ static int detach(struct comedi_device *dev)
|
|||
}
|
||||
|
||||
if (devpriv->pci_dev) {
|
||||
if (devpriv->registers) {
|
||||
if (devpriv->registers)
|
||||
comedi_pci_disable(devpriv->pci_dev);
|
||||
}
|
||||
pci_dev_put(devpriv->pci_dev);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue