Staging: comedi: Remove s526_gpct_config_t typedef
authorBill Pemberton <wfp5p@virginia.edu>
Tue, 17 Mar 2009 02:20:41 +0000 (22:20 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:12 +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 939e17f..5d98162 100644 (file)
@@ -146,10 +146,10 @@ enum S526_GPCT_APP_CLASS {
 /* Config struct for different GPCT subdevice Application Classes and
    their options
 */
-typedef struct s526GPCTConfig {
+struct s526GPCTConfig {
        enum S526_GPCT_APP_CLASS app;
        int data[MAX_GPCT_CONFIG_DATA];
-} s526_gpct_config_t;
+};
 
 /*
  * Board descriptions for two imaginary boards.  Describing the
@@ -201,7 +201,7 @@ struct s526_private {
        /* Used for AO readback */
        unsigned int ao_readback[2];
 
-       s526_gpct_config_t s526_gpct_config[4];
+       struct s526GPCTConfig s526_gpct_config[4];
        unsigned short s526_ai_config;
 };