Skip to content

Commit

Permalink
MSI: Simplify BUG() handling in pci_disable_msi()
Browse files Browse the repository at this point in the history
Although it might be nice to do a printk before BUG'ing, it's really not
necessary, and it complicates the code.

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Acked-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Michael Ellerman authored and Greg Kroah-Hartman committed May 3, 2007
1 parent 54eee4c commit e387b9e
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions drivers/pci/msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,18 +572,15 @@ void pci_disable_msi(struct pci_dev* dev)
if (!entry || !entry->dev || entry->msi_attrib.type != PCI_CAP_ID_MSI) {
return;
}
if (irq_has_action(dev->first_msi_irq)) {
printk(KERN_WARNING "PCI: %s: pci_disable_msi() called without "
"free_irq() on MSI irq %d\n",
pci_name(dev), dev->first_msi_irq);
BUG_ON(irq_has_action(dev->first_msi_irq));
} else {
default_irq = entry->msi_attrib.default_irq;
msi_free_irq(dev, dev->first_msi_irq);

/* Restore dev->irq to its default pin-assertion irq */
dev->irq = default_irq;
}

BUG_ON(irq_has_action(dev->first_msi_irq));

default_irq = entry->msi_attrib.default_irq;
msi_free_irq(dev, dev->first_msi_irq);

/* Restore dev->irq to its default pin-assertion irq */
dev->irq = default_irq;

dev->first_msi_irq = 0;
}

Expand Down

0 comments on commit e387b9e

Please sign in to comment.