diff options
author | Kulikov Vasiliy <segooon@gmail.com> | 2010-07-03 12:04:39 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-07-30 12:47:22 -0400 |
commit | 4e344b1cc53989e8ecc1140e9346f657d7c8aa9e (patch) | |
tree | 8b6f8d4b7445e7b8e0b6d1b6f68bf165f5735f16 /drivers/pci/quirks.c | |
parent | 30da55242818a8ca08583188ebcbaccd283ad4d9 (diff) |
PCI: use for_each_pci_dev()
Use for_each_pci_dev() to simplify the code.
Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/quirks.c')
-rw-r--r-- | drivers/pci/quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 202efa6f57c4..8141f442e3df 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c | |||
@@ -2773,7 +2773,7 @@ static int __init pci_apply_final_quirks(void) | |||
2773 | printk(KERN_DEBUG "PCI: CLS %u bytes\n", | 2773 | printk(KERN_DEBUG "PCI: CLS %u bytes\n", |
2774 | pci_cache_line_size << 2); | 2774 | pci_cache_line_size << 2); |
2775 | 2775 | ||
2776 | while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { | 2776 | for_each_pci_dev(dev) { |
2777 | pci_fixup_device(pci_fixup_final, dev); | 2777 | pci_fixup_device(pci_fixup_final, dev); |
2778 | /* | 2778 | /* |
2779 | * If arch hasn't set it explicitly yet, use the CLS | 2779 | * If arch hasn't set it explicitly yet, use the CLS |