staging: comedi: addi_eeprom: cleanup v_EepromClock76()
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 30 Oct 2012 00:05:03 +0000 (17:05 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 30 Oct 2012 17:50:12 +0000 (10:50 -0700)
Add namespace to the function by renaming the CamelCase function to
addi_eeprom_clk_93c76().

Rename the CamelCase parameter, dw_RegisterValue, to simply 'val'.

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/addi-data/addi_eeprom.c

index 6a2c389..0f7eaae 100644 (file)
@@ -112,13 +112,12 @@ struct str_AnalogInputHeader {
        unsigned char b_Resolution;
 };
 
-static void v_EepromClock76(unsigned long iobase,
-                           unsigned int dw_RegisterValue)
+static void addi_eeprom_clk_93c76(unsigned long iobase, unsigned int val)
 {
-       outl(dw_RegisterValue & ~EE93C76_CLK_BIT, iobase);
+       outl(val & ~EE93C76_CLK_BIT, iobase);
        udelay(100);
 
-       outl(dw_RegisterValue | EE93C76_CLK_BIT, iobase);
+       outl(val | EE93C76_CLK_BIT, iobase);
        udelay(100);
 }
 
@@ -144,8 +143,7 @@ static void v_EepromSendCommand76(unsigned long iobase,
                outl(dw_RegisterValue, iobase);
                udelay(100);
 
-               /* Trigger the EEPROM clock */
-               v_EepromClock76(iobase, dw_RegisterValue);
+               addi_eeprom_clk_93c76(iobase, dw_RegisterValue);
        }
 }
 
@@ -169,8 +167,7 @@ static void v_EepromCs76Read(unsigned long iobase,
 
        /* Get the 16-bit value */
        for (c_BitPos = 0; c_BitPos < 16; c_BitPos++) {
-               /* Trigger the EEPROM clock */
-               v_EepromClock76(iobase, dw_RegisterValue);
+               addi_eeprom_clk_93c76(iobase, dw_RegisterValue);
 
                /* Get the result bit */
                dw_RegisterValueRead = inl(iobase);