diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2009-03-19 18:00:10 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:54:17 -0700 |
commit | 79dcd042246ea49879bc9c15ed6592848f2f3828 (patch) | |
tree | 2d2d987e3609ac8e2298dc6bbd8f07449a938335 | |
parent | e81d65b30ccc3f663f7bb3158567c247c3084ece (diff) |
Staging: comedi: Remove me4000_cnt_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 a17b910acda..d1c36e2f97b 100644 --- a/drivers/staging/comedi/drivers/me4000.h +++ b/drivers/staging/comedi/drivers/me4000.h @@ -309,9 +309,9 @@ struct me4000_dio_info { int count; }; -typedef struct me4000_cnt_info { +struct me4000_cnt_info { int count; -} me4000_cnt_info_t; +}; typedef struct me4000_board { const char *name; @@ -319,7 +319,7 @@ typedef struct me4000_board { struct me4000_ao_info ao; struct me4000_ai_info ai; struct me4000_dio_info dio; - me4000_cnt_info_t cnt; + struct me4000_cnt_info cnt; } me4000_board_t; #define thisboard ((const me4000_board_t *)dev->board_ptr) |