Staging: comedi: Remove S526_GPCT_APP_CLASS typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
387c136adc
commit
dfb0503e2b
1 changed files with 3 additions and 3 deletions
|
@ -135,19 +135,19 @@ union {
|
||||||
|
|
||||||
/* Different Application Classes for GPCT Subdevices */
|
/* Different Application Classes for GPCT Subdevices */
|
||||||
/* The list is not exhaustive and needs discussion! */
|
/* The list is not exhaustive and needs discussion! */
|
||||||
typedef enum {
|
enum S526_GPCT_APP_CLASS {
|
||||||
CountingAndTimeMeasurement,
|
CountingAndTimeMeasurement,
|
||||||
SinglePulseGeneration,
|
SinglePulseGeneration,
|
||||||
PulseTrainGeneration,
|
PulseTrainGeneration,
|
||||||
PositionMeasurement,
|
PositionMeasurement,
|
||||||
Miscellaneous
|
Miscellaneous
|
||||||
} S526_GPCT_APP_CLASS;
|
};
|
||||||
|
|
||||||
/* Config struct for different GPCT subdevice Application Classes and
|
/* Config struct for different GPCT subdevice Application Classes and
|
||||||
their options
|
their options
|
||||||
*/
|
*/
|
||||||
typedef struct s526GPCTConfig {
|
typedef struct s526GPCTConfig {
|
||||||
S526_GPCT_APP_CLASS app;
|
enum S526_GPCT_APP_CLASS app;
|
||||||
int data[MAX_GPCT_CONFIG_DATA];
|
int data[MAX_GPCT_CONFIG_DATA];
|
||||||
} s526_gpct_config_t;
|
} s526_gpct_config_t;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue