Commit 67ae9a42 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: addi_eeprom: remove the last forward declarations

None of the functions in this file are exported. Make them static and
remove the unnecessary forward declarations.
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 aa36c772
...@@ -107,12 +107,6 @@ struct str_AnalogInputHeader { ...@@ -107,12 +107,6 @@ struct str_AnalogInputHeader {
unsigned char b_Resolution; unsigned char b_Resolution;
}; };
int i_EepromReadMainHeader(unsigned short w_PCIBoardEepromAddress,
char *pc_PCIChipInformation, struct comedi_device *dev);
unsigned short w_EepromReadWord(unsigned short w_PCIBoardEepromAddress, char *pc_PCIChipInformation,
unsigned short w_EepromStartAddress);
static void v_EepromClock76(unsigned int dw_Address, static void v_EepromClock76(unsigned int dw_Address,
unsigned int dw_RegisterValue) unsigned int dw_RegisterValue)
{ {
...@@ -213,7 +207,8 @@ static void v_EepromWaitBusy(unsigned short w_PCIBoardEepromAddress) ...@@ -213,7 +207,8 @@ static void v_EepromWaitBusy(unsigned short w_PCIBoardEepromAddress)
} while (b_EepromBusy == 0x80); } while (b_EepromBusy == 0x80);
} }
unsigned short w_EepromReadWord(unsigned short w_PCIBoardEepromAddress, char *pc_PCIChipInformation, static unsigned short w_EepromReadWord(unsigned short w_PCIBoardEepromAddress,
char *pc_PCIChipInformation,
unsigned short w_EepromStartAddress) unsigned short w_EepromStartAddress)
{ {
unsigned char b_Counter = 0; unsigned char b_Counter = 0;
...@@ -437,8 +432,9 @@ static int i_EepromReadAnlogInputHeader(unsigned short w_PCIBoardEepromAddress, ...@@ -437,8 +432,9 @@ static int i_EepromReadAnlogInputHeader(unsigned short w_PCIBoardEepromAddress,
return 0; return 0;
} }
int i_EepromReadMainHeader(unsigned short w_PCIBoardEepromAddress, static int i_EepromReadMainHeader(unsigned short w_PCIBoardEepromAddress,
char *pc_PCIChipInformation, struct comedi_device *dev) char *pc_PCIChipInformation,
struct comedi_device *dev)
{ {
const struct addi_board *this_board = comedi_board(dev); const struct addi_board *this_board = comedi_board(dev);
struct addi_private *devpriv = dev->private; struct addi_private *devpriv = dev->private;
......
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