Skip to content

Commit

Permalink
Staging: comedi: Remove me4000_cnt_info_t typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent e81d65b commit 79dcd04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/comedi/drivers/me4000.h
Original file line number Diff line number Diff line change
Expand Up @@ -309,17 +309,17 @@ 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;
unsigned short device_id;
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)
Expand Down

0 comments on commit 79dcd04

Please sign in to comment.