projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c36f74
)
[CPUFREQ] arch/x86/kernel/cpu/cpufreq: use for_each_pci_dev()
author
Kulikov Vasiliy
<segooon@gmail.com>
Sat, 3 Jul 2010 16:03:55 +0000
(20:03 +0400)
committer
Dave Jones
<davej@redhat.com>
Tue, 3 Aug 2010 17:47:05 +0000
(13:47 -0400)
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>
arch/x86/kernel/cpu/cpufreq/gx-suspmod.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/kernel/cpu/cpufreq/gx-suspmod.c
b/arch/x86/kernel/cpu/cpufreq/gx-suspmod.c
index 16e3483be9e3c13db575daddf9d1a18bc84ab1ec..8c3325fee77cd06a4872f88d0608eb56c0c6e0a7 100644
(file)
--- a/
arch/x86/kernel/cpu/cpufreq/gx-suspmod.c
+++ b/
arch/x86/kernel/cpu/cpufreq/gx-suspmod.c
@@
-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;
}