diff options
Diffstat (limited to 'board/sl8245/sl8245.c')
-rw-r--r-- | board/sl8245/sl8245.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/sl8245/sl8245.c b/board/sl8245/sl8245.c index 1a30b4c..3f81f17 100644 --- a/board/sl8245/sl8245.c +++ b/board/sl8245/sl8245.c @@ -23,6 +23,7 @@ #include <common.h> #include <mpc824x.h> +#include <pci.h> int checkboard (void) { @@ -84,3 +85,11 @@ Done: return CFG_MAX_RAM_SIZE; #endif } + +static struct pci_controller hose; + +void pci_init_board(void) +{ + pci_mpc824x_init(&hose); +} + |