diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2009-03-19 18:00:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:54:17 -0700 |
commit | 0c18e8c046b5ec21e9e0b458807db260309a8f5d (patch) | |
tree | 41aa655d1f35fa35c97fe80d0449083606a975ae /drivers | |
parent | 8d95123295fde18ac22cfeb8eaa0dcc05898b35b (diff) |
Staging: comedi: Remove me4000_ai_info_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/me4000.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/comedi/drivers/me4000.h b/drivers/staging/comedi/drivers/me4000.h index ed24d34bc27e..1c9dc1d7f214 100644 --- a/drivers/staging/comedi/drivers/me4000.h +++ b/drivers/staging/comedi/drivers/me4000.h @@ -298,12 +298,12 @@ struct me4000_ao_info { int fifo_count; }; -typedef struct me4000_ai_info { +struct me4000_ai_info { int count; int sh_count; int diff_count; int ex_trig_analog; -} me4000_ai_info_t; +}; typedef struct me4000_dio_info { int count; @@ -317,7 +317,7 @@ typedef struct me4000_board { const char *name; unsigned short device_id; struct me4000_ao_info ao; - me4000_ai_info_t ai; + struct me4000_ai_info ai; me4000_dio_info_t dio; me4000_cnt_info_t cnt; } me4000_board_t; |