Skip to content

Commit

Permalink
staging: comedi: addi-data: absorb pci_card_alloc() into i_ADDI_Attach()
Browse files Browse the repository at this point in the history
The function pci_card_alloc() enables the pci device by calling
comedi_pci_enable() and then optionally calls pci_set_master() to
enable bus mastering for DMA.

Absorb this code directly into i_ADDI_Attach() as is more typical
for comedi PCI drivers. Also, remove the now unused i_Master
parameter from ptr_select_and_alloc_pci_card().

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Nov 1, 2012
1 parent e864e2c commit ef34724
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 30 deletions.
31 changes: 2 additions & 29 deletions drivers/staging/comedi/drivers/addi-data/addi_amcc_s5933.h
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,8 @@ int i_find_free_pci_card_by_position(unsigned short vendor_id,
struct pcilst_struct *ptr_select_and_alloc_pci_card(unsigned short vendor_id,
unsigned short device_id,
unsigned short pci_bus,
unsigned short pci_slot,
int i_Master);
unsigned short pci_slot);

int pci_card_alloc(struct pcilst_struct *amcc, int master);
int i_pci_card_free(struct pcilst_struct *amcc);

/****************************************************************************/
Expand Down Expand Up @@ -331,24 +329,6 @@ int i_find_free_pci_card_by_position(unsigned short vendor_id,
return 1;
}

/****************************************************************************/
/* mark card as used */
int pci_card_alloc(struct pcilst_struct *amcc, int master)
{
if (!amcc)
return -1;

if (amcc->used)
return 1;
if (comedi_pci_enable(amcc->pcidev, "addi_amcc_s5933"))
return -1;
if (master)
pci_set_master(amcc->pcidev);
amcc->used = 1;

return 0;
}

/****************************************************************************/
/* mark card as free */
int i_pci_card_free(struct pcilst_struct *amcc)
Expand All @@ -368,8 +348,7 @@ int i_pci_card_free(struct pcilst_struct *amcc)
struct pcilst_struct *ptr_select_and_alloc_pci_card(unsigned short vendor_id,
unsigned short device_id,
unsigned short pci_bus,
unsigned short pci_slot,
int i_Master)
unsigned short pci_slot)
{
struct pcilst_struct *card;

Expand All @@ -395,12 +374,6 @@ struct pcilst_struct *ptr_select_and_alloc_pci_card(unsigned short vendor_id,
}
}

if (pci_card_alloc(card, i_Master) != 0) {
printk(" - Can't allocate card!\n");
return NULL;

}

return card;
}
#endif
8 changes: 7 additions & 1 deletion drivers/staging/comedi/drivers/addi-data/addi_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,17 @@ static int i_ADDI_Attach(struct comedi_device *dev, struct comedi_devconfig *it)
card = ptr_select_and_alloc_pci_card(this_board->i_VendorId,
this_board->i_DeviceId,
it->options[0],
it->options[1], i_Dma);
it->options[1]);

if (card == NULL)
return -EIO;

ret = comedi_pci_enable(card->pcidev, "addi_amcc_s5933");
if (ret)
return ret;
if (i_Dma)
pci_set_master(card->pcidev);
card->used = 1;
devpriv->allocated = 1;

iobase_a = pci_resource_start(card->pcidev, 0);
Expand Down

0 comments on commit ef34724

Please sign in to comment.