From: Bill Pemberton Date: Thu, 19 Mar 2009 22:00:10 +0000 (-0400) Subject: Staging: comedi: Remove me4000_cnt_info_t typedef X-Git-Tag: 2.1b_release~13271^2~89 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79dcd042246ea49879bc9c15ed6592848f2f3828;p=platform%2Fkernel%2Fkernel-mfld-blackbay.git Staging: comedi: Remove me4000_cnt_info_t typedef Signed-off-by: Bill Pemberton Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/me4000.h b/drivers/staging/comedi/drivers/me4000.h index a17b910..d1c36e2 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)