Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 318086
b: refs/heads/master
c: 5b7c52a
h: refs/heads/master
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jul 19, 2012
1 parent 3a93480 commit 0e06034
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 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: 84b2d57c0bd9ddb31d33f6a5656bc4d6e6a04576
refs/heads/master: 5b7c52a78da910a198d743c2b32aa7a93e7a540a
37 changes: 18 additions & 19 deletions trunk/drivers/staging/comedi/drivers/cb_pcidda.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,30 +259,29 @@ static struct pci_dev *cb_pcidda_find_pci_dev(struct comedi_device *dev,
struct comedi_devconfig *it)
{
struct pci_dev *pcidev = NULL;
int index;
int bus = it->options[0];
int slot = it->options[1];
int i;

for_each_pci_dev(pcidev) {
if (pcidev->vendor == PCI_VENDOR_ID_CB) {
if (it->options[0] || it->options[1]) {
if (pcidev->bus->number != it->options[0] ||
PCI_SLOT(pcidev->devfn) != it->options[1]) {
continue;
}
}
for (index = 0; index < ARRAY_SIZE(cb_pcidda_boards); index++) {
if (cb_pcidda_boards[index].device_id ==
pcidev->device) {
dev->board_ptr = cb_pcidda_boards + index;
dev_dbg(dev->class_dev,
"Found %s at requested position\n",
thisboard->name);
return pcidev;
}
}
if (bus || slot) {
if (bus != pcidev->bus->number ||
slot != PCI_SLOT(pcidev->devfn))
continue;
}
if (pcidev->vendor != PCI_VENDOR_ID_CB)
continue;

for (i = 0; i < ARRAY_SIZE(cb_pcidda_boards); i++) {
if (cb_pcidda_boards[i].device_id != pcidev->device)
continue;
dev->board_ptr = cb_pcidda_boards + i;
return pcidev;
}
}
dev_err(dev->class_dev,
"Not a ComputerBoards/MeasurementComputing card on requested position\n");
"No supported board found! (req. bus %d, slot %d)\n",
bus, slot);
return NULL;
}

Expand Down

0 comments on commit 0e06034

Please sign in to comment.