diff options
author | Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> | 2009-05-26 03:06:48 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-06-16 17:29:31 -0400 |
commit | 9fc39256508c18d2861de11622183dfb6e79de87 (patch) | |
tree | 75c030716b106de4d79e4828f34b8e6b0592b861 /drivers/pci/probe.c | |
parent | 6e3f36df0ffa433e273c89f1447c94382a9db49e (diff) |
PCI: use pci_is_root_bus() in pci_read_bridge_bases()
Use pci_is_root_bus() in pci_read_bridge_bases() to check if the pci
bus is root, for code consistency.
Reviewed-by: Alex Chiang <achiang@hp.com>
Reviewed-by: Grant Grundler <grundler@parisc-linux.org>
Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/probe.c')
-rw-r--r-- | drivers/pci/probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index b962326e3d95..40e75f6a5056 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
@@ -289,7 +289,7 @@ void __devinit pci_read_bridge_bases(struct pci_bus *child) | |||
289 | struct resource *res; | 289 | struct resource *res; |
290 | int i; | 290 | int i; |
291 | 291 | ||
292 | if (!child->parent) /* It's a host bus, nothing to read */ | 292 | if (pci_is_root_bus(child)) /* It's a host bus, nothing to read */ |
293 | return; | 293 | return; |
294 | 294 | ||
295 | if (dev->transparent) { | 295 | if (dev->transparent) { |