diff options
Diffstat (limited to 'arch/powerpc/kernel/pci-common.c')
-rw-r--r-- | arch/powerpc/kernel/pci-common.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index 9979c43cc8c7..68102ce7e438 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
@@ -639,3 +639,19 @@ void __devinit pci_process_bridge_OF_ranges(struct pci_controller *hose, | |||
639 | hose->mem_resources[memno-1] = tmp; | 639 | hose->mem_resources[memno-1] = tmp; |
640 | } | 640 | } |
641 | } | 641 | } |
642 | |||
643 | /* Decide whether to display the domain number in /proc */ | ||
644 | int pci_proc_domain(struct pci_bus *bus) | ||
645 | { | ||
646 | struct pci_controller *hose = pci_bus_to_host(bus); | ||
647 | #ifdef CONFIG_PPC64 | ||
648 | return hose->buid != 0; | ||
649 | #else | ||
650 | if (!(ppc_pci_flags & PPC_PCI_ENABLE_PROC_DOMAINS)) | ||
651 | return 0; | ||
652 | if (ppc_pci_flags & PPC_PCI_COMPAT_DOMAIN_0) | ||
653 | return hose->global_number != 0; | ||
654 | return 1; | ||
655 | #endif | ||
656 | } | ||
657 | |||