Skip to content

Commit

Permalink
Staging: comedi: adv_pci1710: fixed multiple brace coding style issues
Browse files Browse the repository at this point in the history
Fixed multiple coding style issues.

Signed-off-by: Jason Wong <tsanghan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jason Wong authored and Greg Kroah-Hartman committed May 11, 2010
1 parent 402a01a commit ec14016
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions drivers/staging/comedi/drivers/adv_pci1710.c
Original file line number Diff line number Diff line change
Expand Up @@ -657,9 +657,9 @@ static void interrupt_pci1710_every_sample(void *d)
#endif
++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;
}


if (s->async->cur_chan == 0) { /* one scan done */
devpriv->ai_act_scan++;
Expand Down Expand Up @@ -863,12 +863,12 @@ static int pci171x_ai_docmd_and_mode(int mode, struct comedi_device *dev,
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;
} /* well, user want neverending */
else {
/* well, user want neverending */
else
devpriv->neverending_ai = 0;
}

switch (mode) {
case 1:
case 2:
Expand Down Expand Up @@ -1109,11 +1109,11 @@ static int pci171x_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
devpriv->ai_timer1 = 0;
devpriv->ai_timer2 = 0;

if (cmd->stop_src == TRIG_COUNT) {
if (cmd->stop_src == TRIG_COUNT)
devpriv->ai_scans = cmd->stop_arg;
} else {
else
devpriv->ai_scans = 0;
}


if (cmd->scan_begin_src == TRIG_FOLLOW) { /* mode 1, 2, 3 */
if (cmd->convert_src == TRIG_TIMER) { /* mode 1 and 2 */
Expand Down Expand Up @@ -1593,9 +1593,9 @@ static int pci1710_detach(struct comedi_device *dev)
if (dev->irq)
free_irq(dev->irq, dev);
if (devpriv->pcidev) {
if (dev->iobase) {
if (dev->iobase)
comedi_pci_disable(devpriv->pcidev);
}

pci_dev_put(devpriv->pcidev);
}
}
Expand Down

0 comments on commit ec14016

Please sign in to comment.