dect
/
linux-2.6
Archived
13
0
Fork 0

[CPUFREQ] arch/x86/kernel/cpu/cpufreq: 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: Dave Jones <davej@redhat.com>
This commit is contained in:
Kulikov Vasiliy 2010-07-03 20:03:55 +04:00 committed by Dave Jones
parent 9c36f746d7
commit ccc5638a20
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ static __init struct pci_dev *gx_detect_chipset(void)
}
/* detect which companion chip is used */
while ((gx_pci = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, gx_pci)) != NULL) {
for_each_pci_dev(gx_pci) {
if ((pci_match_id(gx_chipset_tbl, gx_pci)) != NULL)
return gx_pci;
}