Commit ec14016e authored by Jason Wong's avatar Jason Wong Committed by Greg Kroah-Hartman

Staging: comedi: adv_pci1710: fixed multiple brace coding style issues

Fixed multiple coding style issues.
Signed-off-by: default avatarJason Wong <tsanghan@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 402a01ae
...@@ -657,9 +657,9 @@ static void interrupt_pci1710_every_sample(void *d) ...@@ -657,9 +657,9 @@ static void interrupt_pci1710_every_sample(void *d)
#endif #endif
++s->async->cur_chan; ++s->async->cur_chan;
if (s->async->cur_chan >= devpriv->ai_n_chan) { if (s->async->cur_chan >= devpriv->ai_n_chan)
s->async->cur_chan = 0; s->async->cur_chan = 0;
}
if (s->async->cur_chan == 0) { /* one scan done */ if (s->async->cur_chan == 0) { /* one scan done */
devpriv->ai_act_scan++; devpriv->ai_act_scan++;
...@@ -863,12 +863,12 @@ static int pci171x_ai_docmd_and_mode(int mode, struct comedi_device *dev, ...@@ -863,12 +863,12 @@ static int pci171x_ai_docmd_and_mode(int mode, struct comedi_device *dev,
devpriv->ai_eos = 0; devpriv->ai_eos = 0;
} }
if ((devpriv->ai_scans == 0) || (devpriv->ai_scans == -1)) { if ((devpriv->ai_scans == 0) || (devpriv->ai_scans == -1))
devpriv->neverending_ai = 1; devpriv->neverending_ai = 1;
} /* well, user want neverending */ /* well, user want neverending */
else { else
devpriv->neverending_ai = 0; devpriv->neverending_ai = 0;
}
switch (mode) { switch (mode) {
case 1: case 1:
case 2: case 2:
...@@ -1109,11 +1109,11 @@ static int pci171x_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s) ...@@ -1109,11 +1109,11 @@ static int pci171x_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
devpriv->ai_timer1 = 0; devpriv->ai_timer1 = 0;
devpriv->ai_timer2 = 0; devpriv->ai_timer2 = 0;
if (cmd->stop_src == TRIG_COUNT) { if (cmd->stop_src == TRIG_COUNT)
devpriv->ai_scans = cmd->stop_arg; devpriv->ai_scans = cmd->stop_arg;
} else { else
devpriv->ai_scans = 0; devpriv->ai_scans = 0;
}
if (cmd->scan_begin_src == TRIG_FOLLOW) { /* mode 1, 2, 3 */ if (cmd->scan_begin_src == TRIG_FOLLOW) { /* mode 1, 2, 3 */
if (cmd->convert_src == TRIG_TIMER) { /* mode 1 and 2 */ if (cmd->convert_src == TRIG_TIMER) { /* mode 1 and 2 */
...@@ -1593,9 +1593,9 @@ static int pci1710_detach(struct comedi_device *dev) ...@@ -1593,9 +1593,9 @@ static int pci1710_detach(struct comedi_device *dev)
if (dev->irq) if (dev->irq)
free_irq(dev->irq, dev); free_irq(dev->irq, dev);
if (devpriv->pcidev) { if (devpriv->pcidev) {
if (dev->iobase) { if (dev->iobase)
comedi_pci_disable(devpriv->pcidev); comedi_pci_disable(devpriv->pcidev);
}
pci_dev_put(devpriv->pcidev); pci_dev_put(devpriv->pcidev);
} }
} }
......
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