mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
Staging: comedi: Remove me4000_ao_info_t typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
05d21f4af4
commit
8d95123295
@ -293,10 +293,10 @@
|
|||||||
Information about the hardware capabilities
|
Information about the hardware capabilities
|
||||||
===========================================================================*/
|
===========================================================================*/
|
||||||
|
|
||||||
typedef struct me4000_ao_info {
|
struct me4000_ao_info {
|
||||||
int count;
|
int count;
|
||||||
int fifo_count;
|
int fifo_count;
|
||||||
} me4000_ao_info_t;
|
};
|
||||||
|
|
||||||
typedef struct me4000_ai_info {
|
typedef struct me4000_ai_info {
|
||||||
int count;
|
int count;
|
||||||
@ -316,7 +316,7 @@ typedef struct me4000_cnt_info {
|
|||||||
typedef struct me4000_board {
|
typedef struct me4000_board {
|
||||||
const char *name;
|
const char *name;
|
||||||
unsigned short device_id;
|
unsigned short device_id;
|
||||||
me4000_ao_info_t ao;
|
struct me4000_ao_info ao;
|
||||||
me4000_ai_info_t ai;
|
me4000_ai_info_t ai;
|
||||||
me4000_dio_info_t dio;
|
me4000_dio_info_t dio;
|
||||||
me4000_cnt_info_t cnt;
|
me4000_cnt_info_t cnt;
|
||||||
|
Loading…
Reference in New Issue
Block a user