Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325313
b: refs/heads/master
c: 05ac063
h: refs/heads/master
i:
  325311: 5b46843
v: v3
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Sep 17, 2012
1 parent 54ae217 commit fedcbec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 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: 2967d0ae4cd00acd764f3d6fc426a99304ef3712
refs/heads/master: 05ac0635a52836face9acadbc4ffe25ed2f6828a
19 changes: 3 additions & 16 deletions trunk/drivers/staging/comedi/drivers/ni_660x.c
Original file line number Diff line number Diff line change
Expand Up @@ -1034,20 +1034,6 @@ static void ni_660x_free_mite_rings(struct comedi_device *dev)
}
}

/* FIXME: remove this when dynamic MITE allocation implemented. */
static struct mite_struct *ni_660x_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 ni_660x_board *
ni_660x_find_boardinfo(struct pci_dev *pcidev)
{
Expand Down Expand Up @@ -1076,9 +1062,9 @@ static int __devinit ni_660x_attach_pci(struct comedi_device *dev,
dev->board_ptr = ni_660x_find_boardinfo(pcidev);
if (!dev->board_ptr)
return -ENODEV;
private(dev)->mite = ni_660x_find_mite(pcidev);
private(dev)->mite = mite_alloc(pcidev);
if (!private(dev)->mite)
return -ENODEV;
return -ENOMEM;

dev->board_name = board(dev)->name;

Expand Down Expand Up @@ -1196,6 +1182,7 @@ static void ni_660x_detach(struct comedi_device *dev)
if (private(dev)->mite) {
ni_660x_free_mite_rings(dev);
mite_unsetup(private(dev)->mite);
mite_free(private(dev)->mite);
}
}
}
Expand Down

0 comments on commit fedcbec

Please sign in to comment.