diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2009-03-16 22:20:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:54:12 -0700 |
commit | 39f7666080909466c0ed6d5fa48cce3403033ced (patch) | |
tree | 07a3b76b53be2d3ea0437f771d6cddc28e0988ef /drivers | |
parent | 055f6636d9eb27bc13236e07739e019496c21221 (diff) |
Staging: comedi: Remove s526_gpct_config_t typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/comedi/drivers/s526.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/comedi/drivers/s526.c b/drivers/staging/comedi/drivers/s526.c index 939e17f993d9..5d98162734b5 100644 --- a/drivers/staging/comedi/drivers/s526.c +++ b/drivers/staging/comedi/drivers/s526.c @@ -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; }; |