Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325316
b: refs/heads/master
c: e4ff75b
h: refs/heads/master
v: v3
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Sep 17, 2012
1 parent 9f527f3 commit 39a0c62
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 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: 604d66ce56ee8b31f32353006554dd6538feefb0
refs/heads/master: e4ff75b58a2475c9aafe1d137aa81bcba90aa379
22 changes: 5 additions & 17 deletions trunk/drivers/staging/comedi/drivers/ni_labpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -696,20 +696,6 @@ labpc_pci_find_boardinfo(struct pci_dev *pcidev)
return NULL;
}

/* FIXME: remove this when dynamic MITE allocation implemented. */
static struct mite_struct *labpc_pci_find_mite(struct pci_dev *pcidev)
{
struct mite_struct *mite;

for (mite = mite_devices; mite; mite = mite->next) {
if (mite->used)
continue;
if (mite->pcidev == pcidev)
return mite;
}
return NULL;
}

static int __devinit labpc_attach_pci(struct comedi_device *dev,
struct pci_dev *pcidev)
{
Expand All @@ -725,9 +711,9 @@ static int __devinit labpc_attach_pci(struct comedi_device *dev,
dev->board_ptr = labpc_pci_find_boardinfo(pcidev);
if (!dev->board_ptr)
return -ENODEV;
devpriv->mite = labpc_pci_find_mite(pcidev);
devpriv->mite = mite_alloc(pcidev);
if (!devpriv->mite)
return -ENODEV;
return -ENOMEM;
ret = mite_setup(devpriv->mite);
if (ret < 0)
return ret;
Expand Down Expand Up @@ -800,8 +786,10 @@ void labpc_common_detach(struct comedi_device *dev)
if (thisboard->bustype == isa_bustype && dev->iobase)
release_region(dev->iobase, LABPC_SIZE);
#ifdef CONFIG_COMEDI_PCI_DRIVERS
if (devpriv->mite)
if (devpriv->mite) {
mite_unsetup(devpriv->mite);
mite_free(devpriv->mite);
}
#endif
};
EXPORT_SYMBOL_GPL(labpc_common_detach);
Expand Down

0 comments on commit 39a0c62

Please sign in to comment.