Commit 6311e135 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: addi_eeprom: cleanup v_EepromSendCommand76()

Add namespace to the function by renaming the CamelCase function to
addi_eeprom_cmd_93c76().

Rename the CamelCase parameters and local variables.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7522e09b
...@@ -121,29 +121,29 @@ static void addi_eeprom_clk_93c76(unsigned long iobase, unsigned int val) ...@@ -121,29 +121,29 @@ static void addi_eeprom_clk_93c76(unsigned long iobase, unsigned int val)
udelay(100); udelay(100);
} }
static void v_EepromSendCommand76(unsigned long iobase, static void addi_eeprom_cmd_93c76(unsigned long iobase,
unsigned int dw_EepromCommand, unsigned int cmd,
unsigned char b_DataLengthInBits) unsigned char len)
{ {
unsigned int dw_RegisterValue = EE93C76_CS_BIT; unsigned int val = EE93C76_CS_BIT;
char c_BitPos = 0; int i;
/* Toggle EEPROM's Chip select to get it out of Shift Register Mode */ /* Toggle EEPROM's Chip select to get it out of Shift Register Mode */
outl(dw_RegisterValue, iobase); outl(val, iobase);
udelay(100); udelay(100);
/* Send EEPROM command - one bit at a time */ /* Send EEPROM command - one bit at a time */
for (c_BitPos = (b_DataLengthInBits - 1); c_BitPos >= 0; c_BitPos--) { for (i = (len - 1); i >= 0; i--) {
if (dw_EepromCommand & (1 << c_BitPos)) if (cmd & (1 << i))
dw_RegisterValue = dw_RegisterValue | EE93C76_DOUT_BIT; val |= EE93C76_DOUT_BIT;
else else
dw_RegisterValue = dw_RegisterValue & ~EE93C76_DOUT_BIT; val &= ~EE93C76_DOUT_BIT;
/* Write the command */ /* Write the command */
outl(dw_RegisterValue, iobase); outl(val, iobase);
udelay(100); udelay(100);
addi_eeprom_clk_93c76(iobase, dw_RegisterValue); addi_eeprom_clk_93c76(iobase, val);
} }
} }
...@@ -156,7 +156,7 @@ static void v_EepromCs76Read(unsigned long iobase, ...@@ -156,7 +156,7 @@ static void v_EepromCs76Read(unsigned long iobase,
unsigned int dw_RegisterValueRead = 0; unsigned int dw_RegisterValueRead = 0;
/* Send EEPROM read command and offset to EEPROM */ /* Send EEPROM read command and offset to EEPROM */
v_EepromSendCommand76(iobase, (EE_READ << 4) | (w_offset / 2), addi_eeprom_cmd_93c76(iobase, (EE_READ << 4) | (w_offset / 2),
EE76_CMD_LEN); EE76_CMD_LEN);
/* Get the last register value */ /* Get the last register value */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment