aboutsummaryrefslogtreecommitdiff
path: root/arch/i386/pci/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/pci/init.c')
-rw-r--r--arch/i386/pci/init.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/i386/pci/init.c b/arch/i386/pci/init.c
deleted file mode 100644
index f9156d3ac72..00000000000
--- a/arch/i386/pci/init.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <linux/config.h>
-#include <linux/pci.h>
-#include <linux/init.h>
-#include "pci.h"
-
-/* arch_initcall has too random ordering, so call the initializers
- in the right sequence from here. */
-static __init int pci_access_init(void)
-{
-#ifdef CONFIG_PCI_MMCONFIG
- pci_mmcfg_init();
-#endif
- if (raw_pci_ops)
- return 0;
-#ifdef CONFIG_PCI_BIOS
- pci_pcbios_init();
-#endif
- if (raw_pci_ops)
- return 0;
-#ifdef CONFIG_PCI_DIRECT
- pci_direct_init();
-#endif
- return 0;
-}
-arch_initcall(pci_access_init);