Staging: comedi: Remove str_ModuleInfo typedef in addi-data

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Bill Pemberton
2009-03-25 11:05:47 -04:00
committed by Greg Kroah-Hartman
parent 6a770eca8a
commit b4ce4f165c
2 changed files with 5 additions and 5 deletions

View File

@@ -201,9 +201,9 @@ struct addi_board {
struct comedi_insn *insn, unsigned int *data);
};
//MODULE INFO STRUCTURE
/* MODULE INFO STRUCTURE */
typedef union {
union str_ModuleInfo {
/* Incremental counter infos */
struct {
union {
@@ -342,7 +342,7 @@ typedef union {
unsigned char b_CDAReadFIFOOverflow;
} s_CDAModuleInfo;
} str_ModuleInfo;
};
/* Private structure for the addi_apci3120 driver */
typedef struct {
@@ -431,7 +431,7 @@ typedef struct {
} s_FIFOInterruptParameters[APCI1710_SAVE_INTERRUPT];
} s_InterruptParameters;
str_ModuleInfo s_ModuleInfo[4];
union str_ModuleInfo s_ModuleInfo[4];
unsigned int ul_TTLPortConfiguration[10];
} addi_private;

View File

@@ -261,7 +261,7 @@ void v_APCI1710_Interrupt(int irq, void *d)
unsigned int ul_82X54InterruptStatus;
unsigned int ul_StatusRegister;
str_ModuleInfo *ps_ModuleInfo;
union str_ModuleInfo *ps_ModuleInfo;
printk("APCI1710 Interrupt\n");
for (b_ModuleCpt = 0; b_ModuleCpt < 4; b_ModuleCpt++, ps_ModuleInfo++) {