Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337620
b: refs/heads/master
c: 60eebfa
h: refs/heads/master
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Nov 2, 2012
1 parent 1edb507 commit acd9911
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 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: 7dd2358156285dc525d309dd1347d4fdab5c0773
refs/heads/master: 60eebfad7a2191176fd8af323c1fc6821c8cd61a
15 changes: 5 additions & 10 deletions trunk/drivers/staging/comedi/drivers/addi_apci_3120.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,17 @@ static irqreturn_t v_ADDI_Interrupt(int irq, void *d)
return IRQ_RETVAL(1);
}

static const void *addi_find_boardinfo(struct comedi_device *dev,
struct pci_dev *pcidev)
static const void *apci3120_find_boardinfo(struct comedi_device *dev,
struct pci_dev *pcidev)
{
const void *p = dev->driver->board_name;
const struct addi_board *this_board;
int i;

for (i = 0; i < dev->driver->num_names; i++) {
this_board = p;
for (i = 0; i < ARRAY_SIZE(apci3120_boardtypes); i++) {
this_board = &apci3120_boardtypes[i];
if (this_board->i_VendorId == pcidev->vendor &&
this_board->i_DeviceId == pcidev->device)
return this_board;
p += dev->driver->offset;
}
return NULL;
}
Expand All @@ -70,7 +68,7 @@ static int apci3120_attach_pci(struct comedi_device *dev,
struct comedi_subdevice *s;
int ret, pages, i;

this_board = addi_find_boardinfo(dev, pcidev);
this_board = apci3120_find_boardinfo(dev, pcidev);
if (!this_board)
return -ENODEV;
dev->board_ptr = this_board;
Expand Down Expand Up @@ -249,9 +247,6 @@ static struct comedi_driver apci3120_driver = {
.module = THIS_MODULE,
.attach_pci = apci3120_attach_pci,
.detach = apci3120_detach,
.num_names = ARRAY_SIZE(apci3120_boardtypes),
.board_name = &apci3120_boardtypes[0].pc_DriverName,
.offset = sizeof(struct addi_board),
};

static int __devinit apci3120_pci_probe(struct pci_dev *dev,
Expand Down

0 comments on commit acd9911

Please sign in to comment.