Skip to content

Commit

Permalink
Staging: comedi: Remove nidio_board typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent c7ef229 commit a7195f3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/staging/comedi/drivers/ni_pcidio.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,14 +298,16 @@ static struct comedi_driver driver_pcidio = {
detach:nidio_detach,
};

typedef struct {
struct nidio_board {

int dev_id;
const char *name;
int n_8255;
unsigned int is_diodaq:1;
unsigned int uses_firmware:1;
} nidio_board;
static const nidio_board nidio_boards[] = {
};

static const struct nidio_board nidio_boards[] = {
{
dev_id: 0x1150,
name: "pci-dio-32hs",
Expand Down Expand Up @@ -370,7 +372,7 @@ static const nidio_board nidio_boards[] = {
};

#define n_nidio_boards (sizeof(nidio_boards)/sizeof(nidio_boards[0]))
#define this_board ((const nidio_board *)dev->board_ptr)
#define this_board ((const struct nidio_board *)dev->board_ptr)

static DEFINE_PCI_DEVICE_TABLE(ni_pcidio_pci_table) = {
{PCI_VENDOR_ID_NATINST, 0x1150, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Expand Down

0 comments on commit a7195f3

Please sign in to comment.