Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325317
b: refs/heads/master
c: f822a6a
h: refs/heads/master
i:
  325315: 9f527f3
v: v3
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Sep 17, 2012
1 parent 39a0c62 commit 6cc4554
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: e4ff75b58a2475c9aafe1d137aa81bcba90aa379
refs/heads/master: f822a6a1a11759f0a694a4a3547c1186e1a2eaec
22 changes: 5 additions & 17 deletions trunk/drivers/staging/comedi/drivers/ni_pcidio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1103,20 +1103,6 @@ static int pci_6534_upload_firmware(struct comedi_device *dev)
return ret;
}

/* FIXME: remove this when dynamic MITE allocation implemented. */
static struct mite_struct *nidio_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 const struct nidio_board *
nidio_find_boardinfo(struct pci_dev *pcidev)
{
Expand Down Expand Up @@ -1146,9 +1132,9 @@ static int __devinit nidio_attach_pci(struct comedi_device *dev,
dev->board_ptr = nidio_find_boardinfo(pcidev);
if (!dev->board_ptr)
return -ENODEV;
devpriv->mite = nidio_find_mite(pcidev);
devpriv->mite = mite_alloc(pcidev);
if (!devpriv->mite)
return -ENODEV;
return -ENOMEM;

ret = mite_setup(devpriv->mite);
if (ret < 0) {
Expand Down Expand Up @@ -1223,8 +1209,10 @@ static void nidio_detach(struct comedi_device *dev)
mite_free_ring(devpriv->di_mite_ring);
devpriv->di_mite_ring = NULL;
}
if (devpriv->mite)
if (devpriv->mite) {
mite_unsetup(devpriv->mite);
mite_free(devpriv->mite);
}
}
}

Expand Down

0 comments on commit 6cc4554

Please sign in to comment.