]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/atc/atc.c
Add support for CompactFlash on ATC board
[karo-tx-uboot.git] / board / atc / atc.c
index 3547f41f93bbeee72ff518d490e0b1a9d7f2e900..21ed2b051632ff42dee302fa27fe93866d44e057 100644 (file)
@@ -24,6 +24,7 @@
 #include <common.h>
 #include <ioports.h>
 #include <mpc8260.h>
+#include <pci.h>
 
 /*
  * I/O Port configuration table
@@ -364,3 +365,14 @@ void doc_init (void)
        doc_probe (CFG_DOC_BASE);
 }
 #endif
+
+#ifdef CONFIG_PCI
+struct pci_controller hose;
+
+extern void pci_mpc8250_init(struct pci_controller *);
+
+void pci_init_board(void)
+{
+       pci_mpc8250_init(&hose);
+}
+#endif