Skip to content

Commit

Permalink
Staging: comedi: Remove ni6527_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 6555be0 commit 16d38ca
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/staging/comedi/drivers/ni_6527.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,13 @@ static struct comedi_driver driver_ni6527 = {
detach:ni6527_detach,
};

typedef struct {
struct ni6527_board {

int dev_id;
const char *name;
} ni6527_board;
static const ni6527_board ni6527_boards[] = {
};

static const struct ni6527_board ni6527_boards[] = {
{
dev_id: 0x2b20,
name: "pci-6527",
Expand All @@ -100,7 +102,7 @@ static const ni6527_board ni6527_boards[] = {
};

#define n_ni6527_boards (sizeof(ni6527_boards)/sizeof(ni6527_boards[0]))
#define this_board ((const ni6527_board *)dev->board_ptr)
#define this_board ((const struct ni6527_board *)dev->board_ptr)

static DEFINE_PCI_DEVICE_TABLE(ni6527_pci_table) = {
{PCI_VENDOR_ID_NATINST, 0x2b10, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Expand Down

0 comments on commit 16d38ca

Please sign in to comment.