Commit 0a4de47b authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

Staging: comedi: Remove str_BoardInfos typedef in addi-data/hwdrv_apci3200

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ecab384b
......@@ -87,7 +87,7 @@ You shoud also find the complete GPL in the COPYING file accompanying this sourc
int i_Initialised=0;
unsigned int ui_InterruptChannelValue[96]; //Buffer
*/
str_BoardInfos s_BoardInfos[100]; // 100 will be the max number of boards to be used
struct str_BoardInfos s_BoardInfos[100]; // 100 will be the max number of boards to be used
//END JK 06.07.04: Management of sevrals boards
//Begin JK 21.10.2004: APCI-3200 / APCI-3300 Reading of EEPROM values
......@@ -259,7 +259,7 @@ int i_AddiHeaderRW_ReadEeprom(int i_NbOfWordsToRead,
/*+----------------------------------------------------------------------------+*/
void v_GetAPCI3200EepromCalibrationValue(unsigned int dw_PCIBoardEepromAddress,
str_BoardInfos * BoardInformations)
struct str_BoardInfos *BoardInformations)
{
unsigned short w_AnalogInputMainHeaderAddress;
unsigned short w_AnalogInputComponentAddress;
......
......@@ -116,7 +116,8 @@ struct str_Module {
//END JK 21.10.2004: APCI-3200 / APCI-3300 Reading of EEPROM values
//BEGIN JK 06.07.04: Management of sevrals boards
typedef struct {
struct str_BoardInfos {
int i_CJCAvailable;
int i_CJCPolarity;
int i_CJCGain;
......@@ -149,7 +150,8 @@ typedef struct {
int i_NbrOfModule;
struct str_Module s_Module[MAX_MODULE];
//End JK 21.10.2004: APCI-3200 / APCI-3300 Reading of EEPROM values
} str_BoardInfos;
};
//END JK 06.07.04: Management of sevrals boards
// Hardware Layer functions for Apci3200
......
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