commit | 3b6391834d0aa87a15e2d3997537933cafe185bd | [log] [tgz] |
---|---|---|
author | Wei Yongjun <[email protected]> | Thu Feb 21 16:42:03 2013 -0800 |
committer | Linus Torvalds <[email protected]> | Thu Feb 21 17:22:16 2013 -0800 |
tree | 1b93af5b072bcaaed3d01ec4f954db3b47a80019 | |
parent | 7630b661da330b35dd57b6f5d6d62b386f2dd751 [diff] |
mn10300: use for_each_pci_dev to simplify the code Signed-off-by: Wei Yongjun <[email protected]> Cc: David Howells <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
diff --git a/arch/mn10300/unit-asb2305/pci-irq.c b/arch/mn10300/unit-asb2305/pci-irq.c index 91212ea..77439da 100644 --- a/arch/mn10300/unit-asb2305/pci-irq.c +++ b/arch/mn10300/unit-asb2305/pci-irq.c
@@ -29,7 +29,7 @@ struct pci_dev *dev = NULL; u8 line, pin; - while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { + for_each_pci_dev(dev) { pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin); if (pin) { dev->irq = XIRQ1;