aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 37af3a80263a..ed24d34bc27e 100644
--- a/drivers/staging/comedi/drivers/me4000.h
+++ b/drivers/staging/comedi/drivers/me4000.h
@@ -293,10 +293,10 @@
293 Information about the hardware capabilities 293 Information about the hardware capabilities
294 ===========================================================================*/ 294 ===========================================================================*/
295 295
296typedef struct me4000_ao_info { 296struct me4000_ao_info {
297 int count; 297 int count;
298 int fifo_count; 298 int fifo_count;
299} me4000_ao_info_t; 299};
300 300
301typedef struct me4000_ai_info { 301typedef struct me4000_ai_info {
302 int count; 302 int count;
@@ -316,7 +316,7 @@ typedef struct me4000_cnt_info {
316typedef struct me4000_board { 316typedef struct me4000_board {
317 const char *name; 317 const char *name;
318 unsigned short device_id; 318 unsigned short device_id;
319 me4000_ao_info_t ao; 319 struct me4000_ao_info ao;
320 me4000_ai_info_t ai; 320 me4000_ai_info_t ai;
321 me4000_dio_info_t dio; 321 me4000_dio_info_t dio;
322 me4000_cnt_info_t cnt; 322 me4000_cnt_info_t cnt;