forked from Minki/linux
Staging: comedi: Remove das16cs_board typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
b3e8fa97c4
commit
3281a63d0b
@ -54,12 +54,12 @@ Status: experimental
|
|||||||
#define DAS16CS_CTR_CONTROL 14
|
#define DAS16CS_CTR_CONTROL 14
|
||||||
#define DAS16CS_DIO 16
|
#define DAS16CS_DIO 16
|
||||||
|
|
||||||
typedef struct das16cs_board_struct {
|
struct das16cs_board {
|
||||||
const char *name;
|
const char *name;
|
||||||
int device_id;
|
int device_id;
|
||||||
int n_ao_chans;
|
int n_ao_chans;
|
||||||
} das16cs_board;
|
};
|
||||||
static const das16cs_board das16cs_boards[] = {
|
static const struct das16cs_board das16cs_boards[] = {
|
||||||
{
|
{
|
||||||
device_id:0x0000,/* unknown */
|
device_id:0x0000,/* unknown */
|
||||||
name: "PC-CARD DAS16/16",
|
name: "PC-CARD DAS16/16",
|
||||||
@ -78,7 +78,7 @@ static const das16cs_board das16cs_boards[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define n_boards (sizeof(das16cs_boards)/sizeof(das16cs_boards[0]))
|
#define n_boards (sizeof(das16cs_boards)/sizeof(das16cs_boards[0]))
|
||||||
#define thisboard ((const das16cs_board *)dev->board_ptr)
|
#define thisboard ((const struct das16cs_board *)dev->board_ptr)
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
struct pcmcia_device *link;
|
struct pcmcia_device *link;
|
||||||
@ -146,7 +146,7 @@ static int get_prodid(struct comedi_device * dev, struct pcmcia_device *link)
|
|||||||
return prodid;
|
return prodid;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const das16cs_board *das16cs_probe(struct comedi_device * dev,
|
static const struct das16cs_board *das16cs_probe(struct comedi_device * dev,
|
||||||
struct pcmcia_device *link)
|
struct pcmcia_device *link)
|
||||||
{
|
{
|
||||||
int id;
|
int id;
|
||||||
|
Loading…
Reference in New Issue
Block a user