Staging: comedi: Remove str_TimerDetails 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:
Bill Pemberton 2009-03-25 11:06:13 -04:00 committed by Greg Kroah-Hartman
parent d2e0cc9ae1
commit cc0ea813f2

View File

@ -84,17 +84,19 @@ struct str_DigitalOutputHeader {
// used for timer as well as watchdog
typedef struct {
struct str_TimerDetails {
unsigned short w_HeaderSize;
unsigned char b_Resolution;
unsigned char b_Mode; // in case of Watchdog it is functionality
unsigned short w_MinTiming;
unsigned char b_TimeBase;
} str_TimerDetails;
};
typedef struct {
unsigned short w_Ntimer;
str_TimerDetails s_TimerDetails[4]; // supports 4 timers
struct str_TimerDetails s_TimerDetails[4]; // supports 4 timers
} str_TimerMainHeader;
typedef struct {