Use for_each_pci_dev() to simplify the code. Signed-off-by: Kulikov Vasiliy <segooon@xxxxxxxxx> --- arch/x86/kernel/k8.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/arch/x86/kernel/k8.c b/arch/x86/kernel/k8.c index 0f7bc20..0ea4b35 100644 --- a/arch/x86/kernel/k8.c +++ b/arch/x86/kernel/k8.c @@ -27,11 +27,10 @@ EXPORT_SYMBOL(k8_northbridges); static struct pci_dev *next_k8_northbridge(struct pci_dev *dev) { - do { - dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev); - if (!dev) + for_each_pci_dev(dev) { + if (pci_match_id(&k8_nb_ids[0], dev)) break; - } while (!pci_match_id(&k8_nb_ids[0], dev)); + } return dev; } -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html