Skip to content

Commit

Permalink
staging: comedi: addi_eeprom: cleanup i_EepromReadDigitalOutputHeader()
Browse files Browse the repository at this point in the history
Add namespace by renaming this CamelCase function to
addi_eeprom_read_do_info().

Refactor the function so that it stores the data from the eeprom directly
in the private data instead of using the a struct to pass the data back
to i_EepromReadMainHeader(). This allows removing the str_DigitalOutputHeader
struct.

The return value is always 0 and it's never checked. Change it to void.

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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Oct 30, 2012
1 parent ef4e05f commit 7e8ab68
Showing 1 changed file with 13 additions and 22 deletions.
35 changes: 13 additions & 22 deletions drivers/staging/comedi/drivers/addi-data/addi_eeprom.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,6 @@ You should also find the complete GPL in the COPYING file accompanying this sour
#define EEPROM_WATCHDOG 5
#define EEPROM_TIMER_WATCHDOG_COUNTER 10

struct str_DigitalOutputHeader {
unsigned short w_Nchannel;
};

/* used for timer as well as watchdog */
struct str_TimerDetails {
unsigned short w_HeaderSize;
Expand Down Expand Up @@ -246,15 +242,19 @@ static void addi_eeprom_read_di_info(struct comedi_device *dev,
tmp = addi_eeprom_readw(iobase, type, addr + 10);
}

static int i_EepromReadDigitalOutputHeader(unsigned long iobase,
char *type,
unsigned short w_Address,
struct str_DigitalOutputHeader *s_Header)
static void addi_eeprom_read_do_info(struct comedi_device *dev,
unsigned long iobase,
char *type,
unsigned short addr)
{
/* Read Nbr channels */
s_Header->w_Nchannel = addi_eeprom_readw(iobase, type,
w_Address + 6);
return 0;
struct addi_private *devpriv = dev->private;
unsigned short tmp;

/* Number of channels */
tmp = addi_eeprom_readw(iobase, type, addr + 6);
devpriv->s_EeParameters.i_NbrDoChannel = tmp;

devpriv->s_EeParameters.i_DoMaxdata = 0xffffffff >> (32 - tmp);
}

#if 0
Expand Down Expand Up @@ -360,7 +360,6 @@ static int i_EepromReadMainHeader(unsigned long iobase,
const struct addi_board *this_board = comedi_board(dev);
struct addi_private *devpriv = dev->private;
unsigned int ui_Temp;
struct str_DigitalOutputHeader s_DigitalOutputHeader;
/* struct str_TimerMainHeader s_TimerMainHeader,s_WatchdogMainHeader; */
struct str_AnalogOutputHeader s_AnalogOutputHeader;
struct str_AnalogInputHeader s_AnalogInputHeader;
Expand All @@ -386,15 +385,7 @@ static int i_EepromReadMainHeader(unsigned long iobase,
break;

case EEPROM_DIGITALOUTPUT:
i_EepromReadDigitalOutputHeader(iobase, type, addr,
&s_DigitalOutputHeader);

devpriv->s_EeParameters.i_NbrDoChannel =
s_DigitalOutputHeader.w_Nchannel;
ui_Temp = 0xffffffff;
devpriv->s_EeParameters.i_DoMaxdata =
ui_Temp >> (32 -
devpriv->s_EeParameters.i_NbrDoChannel);
addi_eeprom_read_do_info(dev, iobase, type, addr);
break;

case EEPROM_ANALOGINPUT:
Expand Down

0 comments on commit 7e8ab68

Please sign in to comment.