Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56254
b: refs/heads/master
c: 9ce3075
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed May 11, 2007
1 parent 845ac41 commit ff9bec7
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: 17cf8cc9439262cd90421435e0e8c7ab0af26833
refs/heads/master: 9ce3075c20d458040138690edfdf6446664ec3ee
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 ff9bec7

Please sign in to comment.