From wfp5p@virginia.edu Thu Mar 19 13:06:49 2009 From: Bill Pemberton Date: Thu, 19 Mar 2009 18:00:10 -0400 Subject: Staging: comedi: Remove me4000_cnt_info_t typedef To: greg@kroah.com Cc: abbotti@mev.co.uk, fmhess@users.sourceforge.net, ds@schleef.org Message-ID: <20090319220010.10220.24867.stgit@viridian.itc.Virginia.EDU> Signed-off-by: Bill Pemberton Signed-off-by: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/me4000.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- 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)