Add PCI support for MPC8250 Boards (PM825 module)
diff --git a/board/pm826/pm826.c b/board/pm826/pm826.c
index 3ba8ca9..926d74b 100644
--- a/board/pm826/pm826.c
+++ b/board/pm826/pm826.c
@@ -24,6 +24,7 @@
#include <common.h>
#include <ioports.h>
#include <mpc8260.h>
+#include <pci.h>
/*
* I/O Port configuration table
@@ -349,3 +350,12 @@
doc_probe (CFG_DOC_BASE);
}
#endif
+
+struct pci_controller hose;
+
+extern void pci_mpc8250_init(struct pci_controller *);
+
+void pci_init_board(void)
+{
+ pci_mpc8250_init(&hose);
+}