2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2025-01-03 19:24:02 +08:00

Staging: comedi: Remove dt3k_boardtype typedef

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Bill Pemberton 2009-03-16 22:15:02 -04:00 committed by Greg Kroah-Hartman
parent 0b011a6f40
commit c14e920835

View File

@ -81,7 +81,8 @@ static const struct comedi_lrange range_dt3000_ai_pgl = { 4, {
}
};
typedef struct {
struct dt3k_boardtype {
const char *name;
unsigned int device_id;
int adchan;
@ -90,9 +91,10 @@ typedef struct {
const struct comedi_lrange *adrange;
int dachan;
int dabits;
} dt3k_boardtype;
};
static const dt3k_boardtype dt3k_boardtypes[] = {
static const struct dt3k_boardtype dt3k_boardtypes[] = {
{name:"dt3001",
device_id:0x22,
adchan: 16,
@ -158,8 +160,8 @@ static const dt3k_boardtype dt3k_boardtypes[] = {
},
};
#define n_dt3k_boards sizeof(dt3k_boardtypes)/sizeof(dt3k_boardtype)
#define this_board ((const dt3k_boardtype *)dev->board_ptr)
#define n_dt3k_boards sizeof(dt3k_boardtypes)/sizeof(struct dt3k_boardtype)
#define this_board ((const struct dt3k_boardtype *)dev->board_ptr)
static DEFINE_PCI_DEVICE_TABLE(dt3k_pci_table) = {
{PCI_VENDOR_ID_DT, 0x0022, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},