mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 12:33:18 -04:00
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:
committed by
Greg Kroah-Hartman
parent
6a770eca8a
commit
b4ce4f165c
@@ -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;
|
||||
|
||||
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user