From: Adrian-Ken Rueegsegger Date: Wed, 23 Mar 2016 10:34:29 +0000 (+0100) Subject: x86/PCI: Refine PCI support check in pcibios_init() X-Git-Tag: v4.7-rc1~117^2~4^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=35a6ae07c663499875309f18730f3440bb59f6fe;p=karo-tx-linux.git x86/PCI: Refine PCI support check in pcibios_init() Also consider raw_pci_ext_ops when validating if a system has PCI support. This leads to proper resource allocation via pcibios_resource_survey() in the case where PCI config space is exclusively accessed through MMCONFIG. Signed-off-by: Adrian-Ken Rueegsegger Signed-off-by: Bjorn Helgaas --- diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index 381a43c40bf7..8196054fedb0 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c @@ -516,7 +516,7 @@ void __init pcibios_set_cache_line_size(void) int __init pcibios_init(void) { - if (!raw_pci_ops) { + if (!raw_pci_ops && !raw_pci_ext_ops) { printk(KERN_WARNING "PCI: System does not support PCI\n"); return 0; }