Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141538
b: refs/heads/master
c: dea1776
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent da780ea commit 463220a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 673bc56adb5df0e041231493eb75de146c63ac74
refs/heads/master: dea1776abaaf9652f1f8e9d69ef7b70ec4cc381a
10 changes: 5 additions & 5 deletions trunk/drivers/staging/comedi/drivers/adv_pci_dio.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ struct diosubd_data {
unsigned int specflags; // addon subdevice flags
};

typedef struct {
struct dio_boardtype {
const char *name; // board name
int vendor_id; // vendor/device PCI ID
int device_id;
Expand All @@ -204,7 +204,7 @@ typedef struct {
struct diosubd_data sdio[MAX_DIO_SUBDEVG]; // DIO 8255 chans
struct diosubd_data boardid; // card supports board ID switch
enum hw_io_access io_access;
} boardtype;
};

static DEFINE_PCI_DEVICE_TABLE(pci_dio_pci_table) = {
{PCI_VENDOR_ID_ADVANTECH, 0x1730, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Expand All @@ -224,7 +224,7 @@ static DEFINE_PCI_DEVICE_TABLE(pci_dio_pci_table) = {

MODULE_DEVICE_TABLE(pci, pci_dio_pci_table);

static const boardtype boardtypes[] = {
static const struct dio_boardtype boardtypes[] = {
{"pci1730", PCI_VENDOR_ID_ADVANTECH, 0x1730, PCIDIO_MAINREG,
TYPE_PCI1730,
{{16, PCI1730_DI, 2, 0}, {16, PCI1730_IDI, 2, 0}},
Expand Down Expand Up @@ -320,7 +320,7 @@ static const boardtype boardtypes[] = {
IO_16b}
};

#define n_boardtypes (sizeof(boardtypes)/sizeof(boardtype))
#define n_boardtypes (sizeof(boardtypes)/sizeof(struct dio_boardtype))

static struct comedi_driver driver_pci_dio = {
driver_name:"adv_pci_dio",
Expand Down Expand Up @@ -352,7 +352,7 @@ struct pci_dio_private_st {
static pci_dio_private *pci_priv = NULL; /* list of allocated cards */

#define devpriv ((pci_dio_private *)dev->private)
#define this_board ((const boardtype *)dev->board_ptr)
#define this_board ((const struct dio_boardtype *)dev->board_ptr)

/*
==============================================================================
Expand Down

0 comments on commit 463220a

Please sign in to comment.