Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337527
b: refs/heads/master
c: ade6c03
h: refs/heads/master
i:
  337525: 3ac1b0d
  337523: a0906f7
  337519: 6e43883
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Nov 1, 2012
1 parent 8bc54b5 commit a5baf88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 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: b0d116876cc6e8ce8c2bd21d116f0c238cfe48ba
refs/heads/master: ade6c03da5918ce25889d4a1d87453af5fbb8b9a
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ struct pcilst_struct {
unsigned char pci_bus;
unsigned char pci_slot;
unsigned char pci_func;
unsigned int irq;
};

/* ptr to root list of all amcc devices */
Expand Down Expand Up @@ -259,8 +258,6 @@ void v_pci_card_list_init(unsigned short pci_vendor)
amcc->pci_bus = pcidev->bus->number;
amcc->pci_slot = PCI_SLOT(pcidev->devfn);
amcc->pci_func = PCI_FUNC(pcidev->devfn);
amcc->irq = pcidev->irq;

}
}
}
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/staging/comedi/drivers/addi-data/addi_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ static int i_ADDI_Attach(struct comedi_device *dev, struct comedi_devconfig *it)

/* ## */

if (card->irq > 0) {
ret = request_irq(card->irq, v_ADDI_Interrupt, IRQF_SHARED,
if (pcidev->irq > 0) {
ret = request_irq(pcidev->irq, v_ADDI_Interrupt, IRQF_SHARED,
this_board->pc_DriverName, dev);
if (ret == 0)
dev->irq = card->irq;
dev->irq = pcidev->irq;
}

/* Read eepeom and fill addi_board Structure */
Expand Down

0 comments on commit a5baf88

Please sign in to comment.