mirror of https://gitee.com/openkylin/linux.git
Staging: comedi: Remove str_AnalogInputHeader typedef in addi-data/addi_eeprom.c
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
0a4eb4b6c7
commit
6a037d5f65
|
@ -106,13 +106,14 @@ typedef struct {
|
||||||
unsigned char b_Resolution;
|
unsigned char b_Resolution;
|
||||||
} str_AnalogOutputHeader;
|
} str_AnalogOutputHeader;
|
||||||
|
|
||||||
typedef struct {
|
struct str_AnalogInputHeader {
|
||||||
unsigned short w_Nchannel;
|
unsigned short w_Nchannel;
|
||||||
unsigned short w_MinConvertTiming;
|
unsigned short w_MinConvertTiming;
|
||||||
unsigned short w_MinDelayTiming;
|
unsigned short w_MinDelayTiming;
|
||||||
unsigned char b_HasDma;
|
unsigned char b_HasDma;
|
||||||
unsigned char b_Resolution;
|
unsigned char b_Resolution;
|
||||||
} str_AnalogInputHeader;
|
};
|
||||||
|
|
||||||
|
|
||||||
/*****************************************/
|
/*****************************************/
|
||||||
/* Read Header Functions */
|
/* Read Header Functions */
|
||||||
|
@ -139,7 +140,7 @@ int i_EepromReadAnlogOutputHeader(unsigned short w_PCIBoardEepromAddress,
|
||||||
|
|
||||||
int i_EepromReadAnlogInputHeader(unsigned short w_PCIBoardEepromAddress,
|
int i_EepromReadAnlogInputHeader(unsigned short w_PCIBoardEepromAddress,
|
||||||
char *pc_PCIChipInformation, unsigned short w_Address,
|
char *pc_PCIChipInformation, unsigned short w_Address,
|
||||||
str_AnalogInputHeader * s_Header);
|
struct str_AnalogInputHeader * s_Header);
|
||||||
|
|
||||||
/******************************************/
|
/******************************************/
|
||||||
/* Eeprom Specific Functions */
|
/* Eeprom Specific Functions */
|
||||||
|
@ -812,7 +813,7 @@ int i_EepromReadMainHeader(unsigned short w_PCIBoardEepromAddress,
|
||||||
struct str_DigitalOutputHeader s_DigitalOutputHeader;
|
struct str_DigitalOutputHeader s_DigitalOutputHeader;
|
||||||
//struct str_TimerMainHeader s_TimerMainHeader,s_WatchdogMainHeader;
|
//struct str_TimerMainHeader s_TimerMainHeader,s_WatchdogMainHeader;
|
||||||
str_AnalogOutputHeader s_AnalogOutputHeader;
|
str_AnalogOutputHeader s_AnalogOutputHeader;
|
||||||
str_AnalogInputHeader s_AnalogInputHeader;
|
struct str_AnalogInputHeader s_AnalogInputHeader;
|
||||||
|
|
||||||
// Read size
|
// Read size
|
||||||
s_MainHeader.w_HeaderSize =
|
s_MainHeader.w_HeaderSize =
|
||||||
|
@ -1099,7 +1100,7 @@ int i_EepromReadAnlogOutputHeader(unsigned short w_PCIBoardEepromAddress,
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
| Function Name : int i_EepromReadAnlogInputHeader(unsigned short |
|
| Function Name : int i_EepromReadAnlogInputHeader(unsigned short |
|
||||||
| w_PCIBoardEepromAddress,char *pc_PCIChipInformation, |
|
| w_PCIBoardEepromAddress,char *pc_PCIChipInformation, |
|
||||||
| unsigned short w_Address,str_AnalogInputHeader *s_Header) |
|
| unsigned short w_Address,struct str_AnalogInputHeader *s_Header) |
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
| Task : Read Nalog Output Header |
|
| Task : Read Nalog Output Header |
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
|
@ -1107,7 +1108,7 @@ int i_EepromReadAnlogOutputHeader(unsigned short w_PCIBoardEepromAddress,
|
||||||
| |
|
| |
|
||||||
| char *pc_PCIChipInformation : PCI Chip Type. |
|
| char *pc_PCIChipInformation : PCI Chip Type. |
|
||||||
| |
|
| |
|
||||||
| str_AnalogInputHeader *s_Header:Anlog Input Header |
|
| struct str_AnalogInputHeader *s_Header:Anlog Input Header |
|
||||||
| Pointer |
|
| Pointer |
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
| Output Parameters : - |
|
| Output Parameters : - |
|
||||||
|
@ -1119,7 +1120,7 @@ int i_EepromReadAnlogOutputHeader(unsigned short w_PCIBoardEepromAddress,
|
||||||
// Reads only for ONE hardware component
|
// Reads only for ONE hardware component
|
||||||
int i_EepromReadAnlogInputHeader(unsigned short w_PCIBoardEepromAddress,
|
int i_EepromReadAnlogInputHeader(unsigned short w_PCIBoardEepromAddress,
|
||||||
char *pc_PCIChipInformation, unsigned short w_Address,
|
char *pc_PCIChipInformation, unsigned short w_Address,
|
||||||
str_AnalogInputHeader * s_Header)
|
struct str_AnalogInputHeader * s_Header)
|
||||||
{
|
{
|
||||||
unsigned short w_Temp, w_Offset;
|
unsigned short w_Temp, w_Offset;
|
||||||
w_Temp = w_EepromReadWord(w_PCIBoardEepromAddress,
|
w_Temp = w_EepromReadWord(w_PCIBoardEepromAddress,
|
||||||
|
|
Loading…
Reference in New Issue