x86, pci: Add sanity check for PCI fixed bar probing

While probing for the PCI fixed BAR capability in the extended PCI
configuration space we need to make sure raw_pci_ext_ops is
actually initialized.

Signed-off-by: Jacob Pan <jacob.jun.pan@intel.com>
LKML-Reference: <43F901BD926A4E43B106BF17856F0755A321E8F7@orsmsx508.amr.corp.intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>

authored by Jacob Pan and committed by H. Peter Anvin c5411382 9eeeb09e

+4
+4
arch/x86/pci/mrst.c
··· 57 57 u32 pcie_cap = 0, cap_data; 58 58 59 59 pos = PCIE_CAP_OFFSET; 60 + 61 + if (!raw_pci_ext_ops) 62 + return 0; 63 + 60 64 while (pos) { 61 65 if (raw_pci_ext_ops->read(pci_domain_nr(bus), bus->number, 62 66 devfn, pos, 4, &pcie_cap))