diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2009-03-19 17:59:55 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 17:54:17 -0400 |
commit | 8d95123295fde18ac22cfeb8eaa0dcc05898b35b (patch) | |
tree | d3ea9d504f40ea9b3cfafd8f8e3f9992667ffd4f | |
parent | 05d21f4af416d9c7e1c8458a00efd69e44c3dc8c (diff) |
Staging: comedi: Remove me4000_ao_info_t typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-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 37af3a80263a..ed24d34bc27e 100644 --- a/drivers/staging/comedi/drivers/me4000.h +++ b/drivers/staging/comedi/drivers/me4000.h | |||
@@ -293,10 +293,10 @@ | |||
293 | Information about the hardware capabilities | 293 | Information about the hardware capabilities |
294 | ===========================================================================*/ | 294 | ===========================================================================*/ |
295 | 295 | ||
296 | typedef struct me4000_ao_info { | 296 | struct me4000_ao_info { |
297 | int count; | 297 | int count; |
298 | int fifo_count; | 298 | int fifo_count; |
299 | } me4000_ao_info_t; | 299 | }; |
300 | 300 | ||
301 | typedef struct me4000_ai_info { | 301 | typedef struct me4000_ai_info { |
302 | int count; | 302 | int count; |
@@ -316,7 +316,7 @@ typedef struct me4000_cnt_info { | |||
316 | typedef struct me4000_board { | 316 | typedef struct me4000_board { |
317 | const char *name; | 317 | const char *name; |
318 | unsigned short device_id; | 318 | unsigned short device_id; |
319 | me4000_ao_info_t ao; | 319 | struct me4000_ao_info ao; |
320 | me4000_ai_info_t ai; | 320 | me4000_ai_info_t ai; |
321 | me4000_dio_info_t dio; | 321 | me4000_dio_info_t dio; |
322 | me4000_cnt_info_t cnt; | 322 | me4000_cnt_info_t cnt; |