]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: comedi: hwdrv_apci3501: rename 'ul_Command1' in apci3501_write_insn_timer()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 12 Aug 2015 20:25:38 +0000 (13:25 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 15 Aug 2015 01:36:17 +0000 (18:36 -0700)
Rename this CamelCase local variable.

For aesthetics, split the mask/set operations.

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/hwdrv_apci3501.c

index 33fcd19b0a75facd89ccbd551727736d797bd3b0..306309ed963718944cd8955056ac302ec0850267 100644 (file)
@@ -92,43 +92,45 @@ static int apci3501_write_insn_timer(struct comedi_device *dev,
                                     unsigned int *data)
 {
        struct apci3501_private *devpriv = dev->private;
-       unsigned int ul_Command1 = 0;
+       unsigned int ctrl = 0;
 
        if (devpriv->timer_mode == ADDIDATA_WATCHDOG) {
-
                if (data[1] == 1) {
-                       ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
-                       ul_Command1 = (ul_Command1 & 0xFFFFF9FFUL) | 0x1UL;
+                       ctrl = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       ctrl &= 0xfffff9ff;
+                       ctrl |= 0x1;
                        /* Enable the Watchdog */
-                       outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       outl(ctrl, dev->iobase + APCI3501_TIMER_CTRL_REG);
                } else if (data[1] == 0) { /* Stop The Watchdog */
                        outl(0x0, dev->iobase + APCI3501_TIMER_CTRL_REG);
                } else if (data[1] == 2) {
-                       ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
-                       ul_Command1 = (ul_Command1 & 0xFFFFF9FFUL) | 0x200UL;
-                       outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       ctrl = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       ctrl &= 0xfffff9ff;
+                       ctrl |= 0x200;
+                       outl(ctrl, dev->iobase + APCI3501_TIMER_CTRL_REG);
                }
        }
 
        if (devpriv->timer_mode == ADDIDATA_TIMER) {
                if (data[1] == 1) {
-
-                       ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
-                       ul_Command1 = (ul_Command1 & 0xFFFFF9FFUL) | 0x1UL;
+                       ctrl = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       ctrl &= 0xfffff9ff;
+                       ctrl |= 0x1;
                        /* Enable the Timer */
-                       outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       outl(ctrl, dev->iobase + APCI3501_TIMER_CTRL_REG);
                } else if (data[1] == 0) {
                        /* Stop The Timer */
-                       ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
-                       ul_Command1 = ul_Command1 & 0xFFFFF9FEUL;
-                       outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       ctrl = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       ctrl &= 0xfffff9fe;
+                       outl(ctrl, dev->iobase + APCI3501_TIMER_CTRL_REG);
                }
 
                else if (data[1] == 2) {
                        /* Trigger the Timer */
-                       ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
-                       ul_Command1 = (ul_Command1 & 0xFFFFF9FFUL) | 0x200UL;
-                       outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       ctrl = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
+                       ctrl &= 0xfffff9ff;
+                       ctrl |= 0x200;
+                       outl(ctrl, dev->iobase + APCI3501_TIMER_CTRL_REG);
                }
        }