summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorH Hartley Sweeten <hartleys@visionengravers.com>2012-10-30 04:03:54 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-10-30 21:50:12 +0400
commit67ae9a429152a98adbc023c3ce56d85a38c388e2 (patch)
tree3b0f6c77ade9d853da5b3028bc86199368388004 /drivers
parentaa36c7720aa65417a992c9722a2ee34c74572d50 (diff)
downloadlinux-67ae9a429152a98adbc023c3ce56d85a38c388e2.tar.xz
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: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/comedi/drivers/addi-data/addi_eeprom.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/drivers/staging/comedi/drivers/addi-data/addi_eeprom.c b/drivers/staging/comedi/drivers/addi-data/addi_eeprom.c
index c42f05c612f7..b95d4c571774 100644
--- a/drivers/staging/comedi/drivers/addi-data/addi_eeprom.c
+++ b/drivers/staging/comedi/drivers/addi-data/addi_eeprom.c
@@ -107,12 +107,6 @@ struct str_AnalogInputHeader {
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,
unsigned int dw_RegisterValue)
{
@@ -213,8 +207,9 @@ static void v_EepromWaitBusy(unsigned short w_PCIBoardEepromAddress)
} while (b_EepromBusy == 0x80);
}
-unsigned short w_EepromReadWord(unsigned short w_PCIBoardEepromAddress, char *pc_PCIChipInformation,
- unsigned short w_EepromStartAddress)
+static unsigned short w_EepromReadWord(unsigned short w_PCIBoardEepromAddress,
+ char *pc_PCIChipInformation,
+ unsigned short w_EepromStartAddress)
{
unsigned char b_Counter = 0;
unsigned char b_ReadByte = 0;
@@ -437,8 +432,9 @@ static int i_EepromReadAnlogInputHeader(unsigned short w_PCIBoardEepromAddress,
return 0;
}
-int i_EepromReadMainHeader(unsigned short w_PCIBoardEepromAddress,
- char *pc_PCIChipInformation, struct comedi_device *dev)
+static int i_EepromReadMainHeader(unsigned short w_PCIBoardEepromAddress,
+ char *pc_PCIChipInformation,
+ struct comedi_device *dev)
{
const struct addi_board *this_board = comedi_board(dev);
struct addi_private *devpriv = dev->private;