* Update CPC45 board configuration.

* Add USB and PCI support for INKA4x0 board
diff --git a/board/inka4x0/inka4x0.c b/board/inka4x0/inka4x0.c
index 72293ec..a332510 100644
--- a/board/inka4x0/inka4x0.c
+++ b/board/inka4x0/inka4x0.c
@@ -176,3 +176,16 @@
 	 */
 	*(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
 }
+
+#ifdef  CONFIG_PCI
+static struct pci_controller hose;
+
+extern void pci_mpc5xxx_init(struct pci_controller *);
+
+void pci_init_board(void)
+{
+        pci_mpc5xxx_init(&hose);
+}
+#endif
+
+