Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ccc5638a authored by Kulikov Vasiliy's avatar Kulikov Vasiliy Committed by Dave Jones
Browse files

[CPUFREQ] arch/x86/kernel/cpu/cpufreq: use for_each_pci_dev()



Use for_each_pci_dev() to simplify the code.

Signed-off-by: default avatarKulikov Vasiliy <segooon@gmail.com>
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent 9c36f746
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}