diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2012-02-24 07:18:58 +0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-02-24 07:18:58 +0400 |
commit | 3c13be017abe041e495862d50dbd83093e09cd6a (patch) | |
tree | 54f430a5df0d835950430b7199633cc578041c32 /arch/powerpc/platforms/powernv | |
parent | 14be538c566f6fd6f8c8abd1687aa5d36a600703 (diff) | |
download | linux-3c13be017abe041e495862d50dbd83093e09cd6a.tar.xz |
powerpc/PCI: make pci_probe_only default to 0
pci_probe_only is set on ppc64 to prevent resource re-allocation
by the core. It's meant to be used in very specific circumstances
such as when operating under a hypervisor that may prevent such
re-allocation.
Instead of default to 1, we make it default to 0 and explicitly
set it in the few cases where we need it.
This fixes FSL PCI which wants it clear among others.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/powerpc/platforms/powernv')
-rw-r--r-- | arch/powerpc/platforms/powernv/pci.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/powernv/pci.c b/arch/powerpc/platforms/powernv/pci.c index a70bc1e385eb..a053f4fe5db8 100644 --- a/arch/powerpc/platforms/powernv/pci.c +++ b/arch/powerpc/platforms/powernv/pci.c @@ -557,9 +557,6 @@ void __init pnv_pci_init(void) pci_set_flags(PCI_CAN_SKIP_ISA_ALIGN); - /* We do not want to just probe */ - pci_probe_only = 0; - /* OPAL absent, try POPAL first then RTAS detection of PHBs */ if (!firmware_has_feature(FW_FEATURE_OPAL)) { #ifdef CONFIG_PPC_POWERNV_RTAS |