aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/comedi
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2009-03-19 18:00:10 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 14:54:17 -0700
commit79dcd042246ea49879bc9c15ed6592848f2f3828 (patch)
tree2d2d987e3609ac8e2298dc6bbd8f07449a938335 /drivers/staging/comedi
parente81d65b30ccc3f663f7bb3158567c247c3084ece (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>
Diffstat (limited to 'drivers/staging/comedi')
-rw-r--r--drivers/staging/comedi/drivers/me4000.h6
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)