Staging: comedi: Remove S526_GPCT_APP_CLASS typedef
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:19:58 +0000 (22:19 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:11 +0000 (14:54 -0700)
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/s526.c

index d112515..939e17f 100644 (file)
@@ -135,19 +135,19 @@ union {
 
 /* Different Application Classes for GPCT Subdevices */
 /* The list is not exhaustive and needs discussion! */
-typedef enum {
+enum S526_GPCT_APP_CLASS {
        CountingAndTimeMeasurement,
        SinglePulseGeneration,
        PulseTrainGeneration,
        PositionMeasurement,
        Miscellaneous
-} S526_GPCT_APP_CLASS;
+};
 
 /* Config struct for different GPCT subdevice Application Classes and
    their options
 */
 typedef struct s526GPCTConfig {
-       S526_GPCT_APP_CLASS app;
+       enum S526_GPCT_APP_CLASS app;
        int data[MAX_GPCT_CONFIG_DATA];
 } s526_gpct_config_t;