Skip to content

Commit

Permalink
Staging: comedi: Remove instances of assignments in conditionals
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 6a98d36 commit 197c82b
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 23 deletions.
15 changes: 9 additions & 6 deletions drivers/staging/comedi/drivers/icp_multi.c
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,8 @@ static int icp_multi_attach(comedi_device *dev, comedi_devconfig *it)
printk("icp_multi EDBG: BGN: icp_multi_attach(...)\n");

/* Alocate private data storage space */
if ((ret = alloc_private(dev, sizeof(icp_multi_private))) < 0)
ret = alloc_private(dev, sizeof(icp_multi_private));
if (ret < 0)
return ret;

/* Initialise list of PCI cards in system, if not already done so */
Expand All @@ -899,9 +900,11 @@ static int icp_multi_attach(comedi_device *dev, comedi_devconfig *it)
printk("Anne's comedi%d: icp_multi: board=%s", dev->minor,
this_board->name);

if ((card = select_and_alloc_pci_card(PCI_VENDOR_ID_ICP,
this_board->device_id, it->options[0],
it->options[1])) == NULL)
card = select_and_alloc_pci_card(PCI_VENDOR_ID_ICP,
this_board->device_id, it->options[0],
it->options[1]);

if (card == NULL)
return -EIO;

devpriv->card = card;
Expand Down Expand Up @@ -943,9 +946,9 @@ static int icp_multi_attach(comedi_device *dev, comedi_devconfig *it)
if (this_board->n_ctrs)
n_subdevices++;

if ((ret = alloc_subdevices(dev, n_subdevices)) < 0) {
ret = alloc_subdevices(dev, n_subdevices);
if ( ret < 0 )
return ret;
}

icp_multi_reset(dev);

Expand Down
8 changes: 5 additions & 3 deletions drivers/staging/comedi/drivers/icp_multi.h
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,9 @@ static struct pcilst_struct *select_and_alloc_pci_card(unsigned short vendor_id,
int err;

if ((pci_bus < 1) & (pci_slot < 1)) { /* use autodetection */
if ((card = find_free_pci_card_by_device(vendor_id,
device_id)) == NULL) {

card = find_free_pci_card_by_device(vendor_id,device_id);
if (card == NULL) {
rt_printk(" - Unused card not found in system!\n");
return NULL;
}
Expand All @@ -266,7 +267,8 @@ static struct pcilst_struct *select_and_alloc_pci_card(unsigned short vendor_id,
}
}

if ((err = pci_card_alloc(card)) != 0) {
err = pci_card_alloc(card);
if ( err != 0) {
if (err > 0)
rt_printk(" - Can't allocate card!\n");
/* else: error already printed. */
Expand Down
9 changes: 6 additions & 3 deletions drivers/staging/comedi/drivers/rtd520.c
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,8 @@ static int rtd_attach(comedi_device *dev, comedi_devconfig *it)
devpriv->pci_dev = pcidev;
dev->board_name = thisboard->name;

if ((ret = comedi_pci_enable(pcidev, DRV_NAME)) < 0) {
ret = comedi_pci_enable(pcidev, DRV_NAME);
if (ret < 0) {
printk("Failed to enable PCI device and request regions.\n");
return ret;
}
Expand Down Expand Up @@ -918,8 +919,10 @@ static int rtd_attach(comedi_device *dev, comedi_devconfig *it)
/* TODO: set user out source ??? */

/* check if our interrupt is available and get it */
if ((ret = comedi_request_irq(devpriv->pci_dev->irq, rtd_interrupt,
IRQF_SHARED, DRV_NAME, dev)) < 0) {
ret = comedi_request_irq(devpriv->pci_dev->irq, rtd_interrupt,
IRQF_SHARED, DRV_NAME, dev);

if (ret < 0) {
printk("Could not get interrupt! (%u)\n",
devpriv->pci_dev->irq);
return ret;
Expand Down
23 changes: 14 additions & 9 deletions drivers/staging/comedi/drivers/s626.c
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,8 @@ static int s626_attach(comedi_device *dev, comedi_devconfig *it)
return -ENODEV;
}

if ((result = comedi_pci_enable(pdev, "s626")) < 0) {
result = comedi_pci_enable(pdev, "s626");
if (result < 0) {
printk("s626_attach: comedi_pci_enable fails\n");
return -ENODEV;
}
Expand All @@ -552,9 +553,10 @@ static int s626_attach(comedi_device *dev, comedi_devconfig *it)
/* adc buffer allocation */
devpriv->allocatedBuf = 0;

if ((devpriv->ANABuf.LogicalBase =
pci_alloc_consistent(devpriv->pdev, DMABUF_SIZE,
&appdma)) == NULL) {
devpriv->ANABuf.LogicalBase =
pci_alloc_consistent(devpriv->pdev, DMABUF_SIZE, &appdma);

if (devpriv->ANABuf.LogicalBase == NULL) {
printk("s626_attach: DMA Memory mapping error\n");
return -ENOMEM;
}
Expand All @@ -565,9 +567,10 @@ static int s626_attach(comedi_device *dev, comedi_devconfig *it)

devpriv->allocatedBuf++;

if ((devpriv->RPSBuf.LogicalBase =
pci_alloc_consistent(devpriv->pdev, DMABUF_SIZE,
&appdma)) == NULL) {
devpriv->RPSBuf.LogicalBase =
pci_alloc_consistent(devpriv->pdev, DMABUF_SIZE, &appdma);

if (devpriv->RPSBuf.LogicalBase == NULL) {
printk("s626_attach: DMA Memory mapping error\n");
return -ENOMEM;
}
Expand All @@ -593,8 +596,10 @@ static int s626_attach(comedi_device *dev, comedi_devconfig *it)
if (dev->irq == 0) {
printk(" unknown irq (bad)\n");
} else {
if ((ret = comedi_request_irq(dev->irq, s626_irq_handler,
IRQF_SHARED, "s626", dev)) < 0) {
ret = comedi_request_irq(dev->irq, s626_irq_handler,
IRQF_SHARED, "s626", dev);

if (ret < 0) {
printk(" irq not available\n");
dev->irq = 0;
}
Expand Down
7 changes: 5 additions & 2 deletions drivers/staging/comedi/kcomedilib/kcomedilib_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ int comedi_do_insn(comedi_t *d, comedi_insn *insn)

/* XXX check lock */

if ((ret = check_chanlist(s, 1, &insn->chanspec)) < 0) {
ret = check_chanlist(s, 1, &insn->chanspec);
if (ret < 0) {
rt_printk("bad chanspec\n");
ret = -EINVAL;
goto error;
Expand Down Expand Up @@ -443,7 +444,9 @@ int comedi_cancel(comedi_t *d, unsigned int subdevice)
if (!s->cancel || !s->async)
return -EINVAL;

if ((ret = s->cancel(dev, s)))
ret = s->cancel(dev, s);

if (ret)
return ret;

#ifdef CONFIG_COMEDI_RT
Expand Down

0 comments on commit 197c82b

Please sign in to comment.