]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
Staging: comedi: Remove instances of assignments in conditionals
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:03:51 +0000 (22:03 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:53:54 +0000 (14:53 -0700)
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/icp_multi.c
drivers/staging/comedi/drivers/icp_multi.h
drivers/staging/comedi/drivers/rtd520.c
drivers/staging/comedi/drivers/s626.c
drivers/staging/comedi/kcomedilib/kcomedilib_main.c

index aefd1c16ab2bb321144e93d8a99c2902175975f5..d474cb2cb7e525b8c303d5a57091adff4a894302 100644 (file)
@@ -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 */
@@ -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;
@@ -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);
 
index c0abc1062b8d3ce46cd03277ae25b1fd5d390929..0796056a07a4164cbf63d15a237a7487fcd6aacd 100644 (file)
@@ -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;
                }
@@ -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. */
index 08e3dde67f8ccac10c7e2732ae7200e22510523d..578b731ae5003da40f1f5807808c8c00cd084275 100644 (file)
@@ -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;
        }
@@ -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;
index 71309d3e12278dd98cf42f67544eba90bd8be76c..9110ae3c7fecf2d2d639c79ed6761c3f6147ff43 100644 (file)
@@ -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;
        }
@@ -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;
                }
@@ -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;
                }
@@ -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;
                }
index 7133f2f2607c6906d749fd3d86886e5bb20a8f05..94a5067f6bd5269fc85c1ae35d2b4eea16626485 100644 (file)
@@ -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;
@@ -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