Commit 16d38ca3 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

Staging: comedi: Remove ni6527_board typedef

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6555be0a
...@@ -84,11 +84,13 @@ static struct comedi_driver driver_ni6527 = { ...@@ -84,11 +84,13 @@ static struct comedi_driver driver_ni6527 = {
detach:ni6527_detach, detach:ni6527_detach,
}; };
typedef struct { struct ni6527_board {
int dev_id; int dev_id;
const char *name; const char *name;
} ni6527_board; };
static const ni6527_board ni6527_boards[] = {
static const struct ni6527_board ni6527_boards[] = {
{ {
dev_id: 0x2b20, dev_id: 0x2b20,
name: "pci-6527", name: "pci-6527",
...@@ -100,7 +102,7 @@ static const ni6527_board ni6527_boards[] = { ...@@ -100,7 +102,7 @@ static const ni6527_board ni6527_boards[] = {
}; };
#define n_ni6527_boards (sizeof(ni6527_boards)/sizeof(ni6527_boards[0])) #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) = { static DEFINE_PCI_DEVICE_TABLE(ni6527_pci_table) = {
{PCI_VENDOR_ID_NATINST, 0x2b10, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, {PCI_VENDOR_ID_NATINST, 0x2b10, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment