]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mn10300: use for_each_pci_dev to simplify the code
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Wed, 20 Feb 2013 02:13:35 +0000 (13:13 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 20 Feb 2013 05:52:03 +0000 (16:52 +1100)
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/mn10300/unit-asb2305/pci-irq.c

index 91212ea71e697257350e553c81bffb24b5e2f832..77439da04671a60ba0afdffbb47636f2cf81908e 100644 (file)
@@ -29,7 +29,7 @@ void __init pcibios_fixup_irqs(void)
        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;