]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: addi_common.h: remove 'ui_AiScanLength' from private data
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 29 Apr 2014 19:59:41 +0000 (12:59 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 4 May 2014 00:06:33 +0000 (20:06 -0400)
This member of the private data is a copy of the cmd->scan_end_arg. Use that
instead.

Use a local variable in apci3120_cyclic_ai() for the DMA 'scan_bytes', which
is the cmd->scan_end_arg * 2. Replace the open-coded '2' with sizeof(short).

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

index f4f0da5a26f850054e090f9f3aea005050f2e1fc..9e00410c578327666537915a59e202c733ec987e 100644 (file)
@@ -121,7 +121,6 @@ struct addi_private {
        unsigned char b_AiContinuous;   /*  we do unlimited AI */
        unsigned int ui_AiActualScan;   /* how many scans we finished */
        unsigned int ui_AiNbrofChannels;        /*  how many channels is measured */
-       unsigned int ui_AiScanLength;   /*  Length of actual scanlist */
        unsigned int *pui_AiChannelList;        /*  actual chanlist */
        unsigned int ui_AiChannelList[32];      /*  actual chanlist */
        unsigned int ui_AiReadData[32];
index 2bfccbbf59625c9f044beafabb6e44a91968a346..502121233d7f0505f9713816265768fcce42f705 100644 (file)
@@ -1106,6 +1106,7 @@ static int apci3120_cyclic_ai(int mode,
                }
        } else {
                /* If DMA Enabled */
+               unsigned int scan_bytes = cmd->scan_end_arg * sizeof(short);
 
                /* BEGIN JK 07.05.04: Comparison between WIN32 and Linux driver */
                /* inw(dev->iobase+0); reset EOC bit */
@@ -1125,27 +1126,27 @@ static int apci3120_cyclic_ai(int mode,
                dmalen1 = devpriv->ui_DmaBufferSize[1];
 
                if (!devpriv->b_AiContinuous) {
-
-                       if (dmalen0 > (devpriv->ui_AiNbrofScans * devpriv->ui_AiScanLength * 2)) {      /*  must we fill full first buffer? */
-                               dmalen0 =
-                                       devpriv->ui_AiNbrofScans *
-                                       devpriv->ui_AiScanLength * 2;
-                       } else if (dmalen1 > (devpriv->ui_AiNbrofScans * devpriv->ui_AiScanLength * 2 - dmalen0))       /*  and must we fill full second buffer when first is once filled? */
-                               dmalen1 =
-                                       devpriv->ui_AiNbrofScans *
-                                       devpriv->ui_AiScanLength * 2 - dmalen0;
+                       /*
+                        * Must we fill full first buffer? And must we fill
+                        * full second buffer when first is once filled?
+                        */
+                       if (dmalen0 > (devpriv->ui_AiNbrofScans * scan_bytes)) {
+                               dmalen0 = devpriv->ui_AiNbrofScans * scan_bytes;
+                       } else if (dmalen1 > (devpriv->ui_AiNbrofScans * scan_bytes - dmalen0))
+                               dmalen1 = devpriv->ui_AiNbrofScans *
+                                         scan_bytes - dmalen0;
                }
 
                if (cmd->flags & TRIG_WAKE_EOS) {
                        /*  don't we want wake up every scan? */
-                       if (dmalen0 > (devpriv->ui_AiScanLength * 2)) {
-                               dmalen0 = devpriv->ui_AiScanLength * 2;
-                               if (devpriv->ui_AiScanLength & 1)
+                       if (dmalen0 > scan_bytes) {
+                               dmalen0 = scan_bytes;
+                               if (cmd->scan_end_arg & 1)
                                        dmalen0 += 2;
                        }
-                       if (dmalen1 > (devpriv->ui_AiScanLength * 2)) {
-                               dmalen1 = devpriv->ui_AiScanLength * 2;
-                               if (devpriv->ui_AiScanLength & 1)
+                       if (dmalen1 > scan_bytes) {
+                               dmalen1 = scan_bytes;
+                               if (cmd->scan_end_arg & 1)
                                        dmalen1 -= 2;
                                if (dmalen1 < 4)
                                        dmalen1 = 4;
@@ -1337,7 +1338,6 @@ static int apci3120_ai_cmd(struct comedi_device *dev,
 
        /* loading private structure with cmd structure inputs */
        devpriv->ui_AiNbrofChannels = cmd->chanlist_len;
-       devpriv->ui_AiScanLength = cmd->scan_end_arg;
        devpriv->pui_AiChannelList = cmd->chanlist;
 
        /* UPDATE-0.7.57->0.7.68devpriv->ui_AiDataLength=s->async->data_len; */
@@ -1390,11 +1390,12 @@ static void v_APCI3120_InterruptDmaMoveBlock16bit(struct comedi_device *dev,
                                                  unsigned int num_samples)
 {
        struct addi_private *devpriv = dev->private;
+       struct comedi_cmd *cmd = &s->async->cmd;
 
        devpriv->ui_AiActualScan +=
-               (s->async->cur_chan + num_samples) / devpriv->ui_AiScanLength;
+               (s->async->cur_chan + num_samples) / cmd->scan_end_arg;
        s->async->cur_chan += num_samples;
-       s->async->cur_chan %= devpriv->ui_AiScanLength;
+       s->async->cur_chan %= cmd->scan_end_arg;
 
        cfc_write_array_to_buffer(s, dma_buffer, num_samples * sizeof(short));
 }