staging: comedi: s626: factor out the dma buffer allocation
authorH Hartley Sweeten <hartleys@visionengravers.com>
Mon, 24 Sep 2012 20:23:57 +0000 (13:23 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Sep 2012 16:37:31 +0000 (09:37 -0700)
To make the attach a bit cleaner, factor the dma buffer allocation
out of attach_pci() into a new function.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/s626.c

index a9d78c72140306e6ba067f7555560f29e28e4da0..61bb8ab05786c4cff7b5bb0b9b79b56534b529e7 100644 (file)
@@ -2437,6 +2437,33 @@ static void CountersInit(struct comedi_device *dev)
        }
 }
 
+static int s626_allocate_dma_buffers(struct comedi_device *dev)
+{
+       struct pci_dev *pcidev = comedi_to_pci_dev(dev);
+       void *addr;
+       dma_addr_t appdma;
+
+       devpriv->allocatedBuf = 0;
+
+       addr = pci_alloc_consistent(pcidev, DMABUF_SIZE, &appdma);
+       if (!addr)
+               return -ENOMEM;
+       devpriv->ANABuf.LogicalBase = addr;
+       devpriv->ANABuf.PhysicalBase = appdma;
+
+       devpriv->allocatedBuf++;
+
+       addr = pci_alloc_consistent(pcidev, DMABUF_SIZE, &appdma);
+       if (!addr)
+               return -ENOMEM;
+       devpriv->RPSBuf.LogicalBase = addr;
+       devpriv->RPSBuf.PhysicalBase = appdma;
+
+       devpriv->allocatedBuf++;
+
+       return 0;
+}
+
 static int s626_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
 {
 /*   uint8_t   PollList; */
@@ -2446,7 +2473,6 @@ static int s626_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
 /*   unsigned int data[16]; */
        int i;
        int ret;
-       dma_addr_t appdma;
        struct comedi_subdevice *s;
 
        comedi_set_hw_dev(dev, &pcidev->dev);
@@ -2473,32 +2499,9 @@ static int s626_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
 
        /* DMA FIXME DMA// */
 
-       /* adc buffer allocation */
-       devpriv->allocatedBuf = 0;
-
-       devpriv->ANABuf.LogicalBase =
-               pci_alloc_consistent(pcidev, DMABUF_SIZE, &appdma);
-
-       if (devpriv->ANABuf.LogicalBase == NULL) {
-               printk(KERN_ERR "s626_attach: DMA Memory mapping error\n");
-               return -ENOMEM;
-       }
-
-       devpriv->ANABuf.PhysicalBase = appdma;
-
-       devpriv->allocatedBuf++;
-
-       devpriv->RPSBuf.LogicalBase =
-               pci_alloc_consistent(pcidev, DMABUF_SIZE, &appdma);
-
-       if (devpriv->RPSBuf.LogicalBase == NULL) {
-               printk(KERN_ERR "s626_attach: DMA Memory mapping error\n");
-               return -ENOMEM;
-       }
-
-       devpriv->RPSBuf.PhysicalBase = appdma;
-
-       devpriv->allocatedBuf++;
+       ret = s626_allocate_dma_buffers(dev);
+       if (ret)
+               return ret;
 
        ret = comedi_alloc_subdevices(dev, 6);
        if (ret)
This page took 0.027267 seconds and 5 git commands to generate.