2 #include <linux/init.h>
5 /* arch_initcall has too random ordering, so call the initializers
6 in the right sequence from here. */
7 static __init int pci_access_init(void)
9 int type __maybe_unused = 0;
11 #ifdef CONFIG_PCI_DIRECT
12 type = pci_direct_probe();
14 #ifdef CONFIG_PCI_MMCONFIG
19 #ifdef CONFIG_PCI_BIOS
23 * don't check for raw_pci_ops here because we want pcbios as last
24 * fallback, yet it's needed to run first to set pcibios_last_bus
25 * in case legacy PCI probing is used. otherwise detecting peer busses
28 #ifdef CONFIG_PCI_DIRECT
29 pci_direct_init(type);
33 "PCI: Fatal: No config space access function found\n");
37 arch_initcall(pci_access_init);