Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56217
b: refs/heads/master
c: b3b7cc7
h: refs/heads/master
i:
  56215: 3f67b96
v: v3
  • Loading branch information
David Miller authored and Linus Torvalds committed May 11, 2007
1 parent c548225 commit 196578f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 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: 0a3fd051c7036ef71b58863f8e5da7c3dabd9d3f
refs/heads/master: b3b7cc7b4138f4171da5813b5ec2a14835e02482
6 changes: 4 additions & 2 deletions trunk/drivers/pci/msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,10 @@ static int msi_free_irqs(struct pci_dev* dev)
{
struct msi_desc *entry, *tmp;

list_for_each_entry(entry, &dev->msi_list, list)
BUG_ON(irq_has_action(entry->irq));
list_for_each_entry(entry, &dev->msi_list, list) {
if (entry->irq)
BUG_ON(irq_has_action(entry->irq));
}

arch_teardown_msi_irqs(dev);

Expand Down

0 comments on commit 196578f

Please sign in to comment.